【Android基础入门〖13〗】Gallery


目录(?)[+]

1    在 xml 布局中添加 Gallery

activity_main.xml
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     android:layout_width="match_parent"  
  3.     android:layout_height="match_parent">  
  4.     <Gallery  
  5.         android:id="@+id/gallery"  
  6.         android:layout_width="match_parent"  
  7.         android:layout_height="match_parent"/>  
  8. </LinearLayout>  


2    自定义 ImageAdapter

ImageAdapter.java
  1. package com.example.gallery;  
  2. import java.util.List;  
  3. import android.content.Context;  
  4. import android.content.res.TypedArray;  
  5. import android.view.View;  
  6. import android.view.ViewGroup;  
  7. import android.widget.BaseAdapter;  
  8. import android.widget.Gallery;  
  9. import android.widget.ImageView;  
  10. @SuppressWarnings("deprecation")  
  11. public class ImageAdapter extends BaseAdapter {  
  12.       
  13.     private Context context;  
  14.     private List<Integer> list;  
  15.     private TypedArray typedArray;  
  16.     private int item_background;  
  17.       
  18.     public ImageAdapter(Context context ,List<Integer> list)  
  19.     {  
  20.         this.context=context;  
  21.         this.list=list;  
  22.         this.typedArray = context.obtainStyledAttributes(R.styleable.gallery_style);  
  23.         item_background=typedArray.getResourceId(R.styleable.gallery_style_android_galleryItemBackground, 0);  
  24.         typedArray.recycle();  
  25.     }  
  26.     @Override  
  27.     public int getCount() {  
  28.         return list.size();  
  29.     }  
  30.     @Override  
  31.     public Object getItem(int position) {  
  32.         return position;  
  33.     }  
  34.     @Override  
  35.     public long getItemId(int position) {  
  36.         return position;  
  37.     }  
  38.     @Override  
  39.     public View getView(int position, View convertView, ViewGroup parent) {  
  40.         ImageView imageView = new ImageView(context);  
  41.         //设置显示的图片  
  42.         imageView.setImageResource(list.get(position));  
  43.           
  44.         //设置伸缩规格  
  45.         imageView.setScaleType(ImageView.ScaleType.FIT_XY);  
  46.           
  47.         //设置布局参数  
  48.         imageView.setLayoutParams(new Gallery.LayoutParams(150,100));  
  49.           
  50.         //设置背景边框  
  51.         imageView.setBackgroundResource(item_background);  
  52.           
  53.         return imageView;  
  54.     }  
  55. }  



3    每个 ImageView 的背景参数

res/values/attrs.xml
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <resources>  
  3.     <declare-styleable name="gallery_style">  
  4.         <attr name="android:galleryItemBackground" />  
  5.     </declare-styleable>  
  6. </resources>  


4    在 MainActivity 中绑定数据与设置监听

MainActivity.java
  1. package com.example.gallery;  
  2. import java.util.ArrayList;  
  3. import android.app.Activity;  
  4. import android.os.Bundle;  
  5. import android.view.View;  
  6. import android.widget.AdapterView;  
  7. import android.widget.Gallery;  
  8. import android.widget.Toast;  
  9. @SuppressWarnings("deprecation")  
  10. public class MainActivity extends Activity {  
  11.     @Override  
  12.     protected void onCreate(Bundle savedInstanceState) {  
  13.         super.onCreate(savedInstanceState);  
  14.         setContentView(R.layout.activity_main);  
  15.         Gallery gallery=(Gallery)findViewById(R.id.gallery);  
  16.           
  17.         ArrayList<Integer>list=new ArrayList<Integer>();  
  18.         list.add(R.drawable.img1);  
  19.         list.add(R.drawable.img2);  
  20.         list.add(R.drawable.img3);  
  21.         list.add(R.drawable.img4);  
  22.         list.add(R.drawable.img5);  
  23.         list.add(R.drawable.img6);  
  24.         list.add(R.drawable.img7);  
  25.           
  26.         ImageAdapter adapter=new ImageAdapter(this,list);  
  27.         gallery.setAdapter(adapter);  
  28.           
  29.         gallery.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {    
  30.             @Override    
  31.             public void onItemSelected(AdapterView<?> parent, View v,int position, long id) {    
  32.                 Toast.makeText(getApplicationContext(), "选择了:  "+   
  33.                                String.valueOf(position), Toast.LENGTH_SHORT).show();  
  34.             }    
  35.               
  36.             @Override    
  37.             public void onNothingSelected(AdapterView<?> arg0) {    
  38.             //这里不做响应    
  39.             }    
  40.         });   
  41.     }  
  42. }  


5    图片资源

注:图片最好为 png 格式的图片,由于jpg是压缩后的图片,在android 中解压缩有可能导致内存溢出错误。
 

6    结果展示

 

原:http://blog.csdn.net/mkrcpp/article/details/11993163
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值