Android2.2以上使用HorizontalScrollView取代Gallery

來源:互聯網
上載者:User

    近期一直在做我的畢業設計--鄭大學生助手,先給這個Android應用做一個主題切換功能,以前也使用過Gallery,最初自己的想法也是使用這個,再讓使用者選擇使用哪一個,可是當我在寫代碼中,eclipse提示The type Gallery is deprecated。查閱資料後發現2.2以上版本已經用HorizontalScrollView取代Gallery ,原因Gallery每次切換圖片時都要建立視圖,造成太多的資源浪費。

          我現在需要的是在手機上顯示可以滑動的幾張圖片,也就是各個主題對應的圖片,然後使用者點擊圖片進行切換就行了,使用Gallery需要設定相應的適配器,但是使用HorizontalScrollView卻顯得非常的簡單。

     

         具體代碼如下:

1 建立xml:


[html]
<?xml version="1.0" encoding="utf-8"?> 
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:fadingEdge="none" 
    android:saveEnabled="false" 
    android:scrollbars="none" > 
 
    <LinearLayout 
        android:layout_width="wrap_content" 
        android:layout_height="match_parent" 
        android:orientation="horizontal" > 
 
        <ImageView 
            android:id="@+id/theme1" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:contentDescription="@string/app_name" 
            android:src="@drawable/theme1" > 
        </ImageView> 
 
        <ImageView 
            android:id="@+id/theme2" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:contentDescription="@string/app_name" 
            android:src="@drawable/theme2" > 
        </ImageView> 
    </LinearLayout> 
 
</HorizontalScrollView> 

<?xml version="1.0" encoding="utf-8"?>
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:fadingEdge="none"
    android:saveEnabled="false"
    android:scrollbars="none" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:orientation="horizontal" >

        <ImageView
            android:id="@+id/theme1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:contentDescription="@string/app_name"
            android:src="@drawable/theme1" >
        </ImageView>

        <ImageView
            android:id="@+id/theme2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:contentDescription="@string/app_name"
            android:src="@drawable/theme2" >
        </ImageView>
    </LinearLayout>

</HorizontalScrollView>
 2 控制碼

 

 

[java]
import android.app.Activity; 
import android.os.Bundle; 
import android.view.View; 
import android.view.Window; 
import android.view.View.OnClickListener; 
import android.widget.ImageView; 
import android.widget.Toast; 
 
public class GalleryTest  extends Activity implements OnClickListener{ 
 
    private ImageView theme1,theme2; 
    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
        // TODO Auto-generated method stub  
        super.onCreate(savedInstanceState); 
        this.requestWindowFeature(Window.FEATURE_NO_TITLE); 
        this.setContentView(R.layout.gallery); 
 
        theme1=(ImageView)findViewById(R.id.theme1); 
        theme2=(ImageView)findViewById(R.id.theme2); 
        theme1.setOnClickListener(this); 
        theme2.setOnClickListener(this); 
    } 
    @Override 
    public void onClick(View v) { 
        if(v==theme1){ 
            Toast.makeText(this, "主題1", Toast.LENGTH_SHORT).show(); 
            //真正的主題切換  
        }else   if(v==theme2){ 
            Toast.makeText(this, "主題2", Toast.LENGTH_SHORT).show(); 
            //真正的主題切換  
        } 
 
    } 
 

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.view.View.OnClickListener;
import android.widget.ImageView;
import android.widget.Toast;

public class GalleryTest  extends Activity implements OnClickListener{

 private ImageView theme1,theme2;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  // TODO Auto-generated method stub
  super.onCreate(savedInstanceState);
  this.requestWindowFeature(Window.FEATURE_NO_TITLE);
  this.setContentView(R.layout.gallery);

  theme1=(ImageView)findViewById(R.id.theme1);
  theme2=(ImageView)findViewById(R.id.theme2);
  theme1.setOnClickListener(this);
  theme2.setOnClickListener(this);
 }
 @Override
 public void onClick(View v) {
  if(v==theme1){
   Toast.makeText(this, "主題1", Toast.LENGTH_SHORT).show();
   //真正的主題切換
  }else  if(v==theme2){
   Toast.makeText(this, "主題2", Toast.LENGTH_SHORT).show();
   //真正的主題切換
  }

 }

}
這樣就可以,如下(僅僅示範而已):



 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.