前言
本章內容是 android.widget.Gallery.LayoutParams,版本為Android 2.3 r1,翻譯來自"我是誰",歡迎大家訪問他的部落格:http://blog.sina.com.cn/u/1744311365,再次感謝"我是誰" !期待你加入Android 中文API的翻譯,聯絡我over140@gmail.com。
聲明
歡迎轉載,但請保留文章原始出處:)
部落格園:http://www.cnblogs.com/
Android中文翻譯組:http://code.taobao.org/project/view/404/
本文
一、結構
public static class Gallery.LayoutParams extends ViewGroup.LayoutParams
java.lang.Object
android.view. ViewGroup.LayoutParams
android.widget.Gallery.LayoutParams
二、類概述
Gallery(畫廊)擴充了LayoutParams,以此提供可以容納當前的轉換資訊和先前的位置轉換資訊的場所。
三、補充
- public View getView(int position, View convertView, ViewGroup parent)
- {
- ImageView imageView = new ImageView(mContext);
- // 設定當前映像的映像(position為當前映像列表的位置)
- imageView.setImageResource(resIds[position]);
- imageView.setScaleType(ImageView.ScaleType.FIT_XY);
- imageView.setLayoutParams(new Gallery.LayoutParams(163, 106));
- // 設定Gallery組件的背景風格
- imageView.setBackgroundResource(mGalleryItemBackground);
- return imageView;
- }
四、相關章節
android中文api(79)——Gallery