Android的Gallery控件是个很不错的看图控件,大大减轻了开发者对于看图功能的开发,而且效果也比较美观。

/Chapter04_UI_Gallery01/src/com/amaker/test/MainActivity.java

代码
                            package           com.amaker.test;

import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.Gallery;
import android.widget.ImageView;

public class MainActivity extends Activity {
/** Called when the activity is first created. */
@Override
// 创建时被调用
public void onCreate(Bundle savedInstanceState) {
super .onCreate(savedInstanceState);
setContentView(R.layout.main);
Gallery g
= (Gallery) findViewById(R.id.Gallery01);

g.setAdapter(
new MyAdapter( this ));
}

class MyAdapter extends BaseAdapter{
Context context;
MyAdapter(Context context){
this .context = context;
}
private Integer[] imgs = {
R.drawable.gallery_photo_1,
R.drawable.gallery_photo_2,
R.drawable.gallery_photo_3,
R.drawable.gallery_photo_4,
R.drawable.gallery_photo_5,
R.drawable.gallery_photo_6,
R.drawable.gallery_photo_7,
R.drawable.gallery_photo_8,

R.drawable.gallery_photo_1,
R.drawable.gallery_photo_2,
R.drawable.gallery_photo_3,
R.drawable.gallery_photo_4,
R.drawable.gallery_photo_5,
R.drawable.gallery_photo_6,
R.drawable.gallery_photo_7,
R.drawable.gallery_photo_8
};

public int getCount() {
return imgs.length;
}

public Object getItem( int item) {
return item;
}

public long getItemId( int id) {
return id;
}

public View getView( int position, View convertView, ViewGroup parent) {
ImageView imageView
= new ImageView(context);
imageView.setImageResource(imgs[position]);
imageView.setScaleType(ImageView.ScaleType.FIT_XY);
imageView.setLayoutParams(
new Gallery.LayoutParams( 136 , 88 ));

return imageView;
}

}
}

/Chapter04_UI_Gallery01/res/layout/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/Gallery01"
android:layout_width
="wrap_content"
android:layout_height
="wrap_content" >
</ Gallery >

</ LinearLayout >

更多相关文章

  1. Android开发者实用代码片段 与大家分享
  2. Android解决父控件拦截子控件手势滑动事件的问题
  3. 【Android】使用LiveData KTX Builder让代码更简洁
  4. 一个简单的iPhone项目及代码
  5. 整理:Android自带、第三方需要添加依赖的控件
  6. Android Interface(UI) 界面控件简单介绍01
  7. android 自定义导航控件
  8. android studio调试c++代码
  9. Android 控件之Gallery图片集

随机推荐

  1. Android WheelView(滑轮组件)使用
  2. android解析xml文件的方式(其三)
  3. Android面试题整理(一)
  4. cocos2d-x 2.X for Android中需要使用Ope
  5. Android——编译odex保护
  6. Andorid UI设计技巧
  7. 安卓常用属性
  8. 一键切换Android应用环境(Environment Swi
  9. Android(安卓)UI 限定字数 单独一行
  10. Android静态注册广播receiver检测WIFI连