Android 입문 Gallery 사용법 실례 분석

4745 단어 AndroidGallery
본 고 에서 실례 적 으로 소개 한 안 드 로 이 드 의 Gallery 컨트롤 은 좋 은 그림 보기 컨트롤 로 개발 자가 그림 보기 기능 에 대한 개발 을 크게 줄 일 수 있 고 효과 도 아름답다.본 논문 의 사례 에서 Gallery 의 용법 은 주로 자원 의 그림 을 반사 체제 로 동적 으로 읽 는 것 을 실현 한다.
이 인 스 턴 스 코드 가 실 행 된 효과 도 는 다음 과 같 습 니 다.
 
main.xml 원본 코드 는 다음 과 같 습 니 다.

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  android:orientation="vertical" 
  android:layout_width="fill_parent" 
  android:layout_height="fill_parent" 
  > 
<Gallery android:id="@+id/gallery" android:layout_height="fill_parent" android:layout_width="fill_parent"></Gallery> 
</LinearLayout>

Java 프로그램 원본 코드 는 다음 과 같 습 니 다.

package com.testImageView; 
 
import java.lang.reflect.Field; 
import java.util.ArrayList; 
 
import android.app.Activity; 
import android.content.Context; 
import android.graphics.Bitmap; 
import android.graphics.BitmapFactory; 
import android.os.Bundle; 
import android.view.View; 
import android.view.ViewGroup; 
import android.widget.AdapterView; 
import android.widget.BaseAdapter; 
import android.widget.Gallery; 
import android.widget.ImageView; 
import android.widget.AdapterView.OnItemClickListener; 
 
public class testImageView extends Activity { 
  private Gallery mGallery; 
  @Override 
  public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.main); 
     
    mGallery = (Gallery)findViewById(R.id.gallery); 
    try { 
      mGallery.setAdapter(new ImageAdapter(this)); 
    } catch (IllegalArgumentException e) { 
      // TODO Auto-generated catch block 
      e.printStackTrace(); 
    } catch (IllegalAccessException e) { 
      // TODO Auto-generated catch block 
      e.printStackTrace(); 
    } 
    mGallery.setOnItemClickListener(new OnItemClickListener() { 
      public void onItemClick(AdapterView parent, View v, int position, long id) { 
        testImageView.this.setTitle(String.valueOf(position)); 
      } 
    }); 
  } 
   
  /* 
   * class ImageAdapter is used to control gallery source and operation. 
   */ 
  private class ImageAdapter extends BaseAdapter{ 
    private Context mContext; 
    private ArrayList<Integer> imgList=new ArrayList<Integer>(); 
    private ArrayList<Object> imgSizes=new ArrayList<Object>(); 
    public ImageAdapter(Context c) throws IllegalArgumentException, IllegalAccessException{ 
      mContext = c; 
       
      //              ID    
      Field[] fields = R.drawable.class.getDeclaredFields(); 
      for (Field field : fields) 
      { 
        if (!"icon".equals(field.getName()))//  icon      
        {   
          int index=field.getInt(R.drawable.class); 
          //    ID 
          imgList.add(index); 
          //       
          int size[]=new int[2]; 
          Bitmap bmImg=BitmapFactory.decodeResource(getResources(),index); 
          size[0]=bmImg.getWidth();size[1]=bmImg.getHeight(); 
          imgSizes.add(size); 
        } 
      } 
    } 
    @Override 
    public int getCount() { 
      // TODO Auto-generated method stub 
 
      return imgList.size(); 
    } 
 
    @Override 
    public Object getItem(int position) { 
      // TODO Auto-generated method stub 
 
      return position; 
    } 
 
    @Override 
    public long getItemId(int position) { 
      // TODO Auto-generated method stub 
 
      return position; 
    } 
 
    @Override 
    public View getView(int position, View convertView, ViewGroup parent) { 
      // TODO Auto-generated method stub 
 
      ImageView i = new ImageView (mContext); 
      // imgList    ID 
      i.setImageResource(imgList.get(position).intValue()); 
      i.setScaleType(ImageView.ScaleType.FIT_XY); 
      // imgSizes       
      int size[]= new int[2]; 
      size=(int[]) imgSizes.get(position); 
      i.setLayoutParams(new Gallery.LayoutParams(size[0], size[1])); 
      return i; 
    } 
     
  }; 
}

좋은 웹페이지 즐겨찾기