Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> android中文api(80)——Gallery.LayoutParams

android中文api(80)——Gallery.LayoutParams

編輯:Android開發實例

正文

  一、結構

 

public static class Gallery.LayoutParams extends ViewGroup.LayoutParams

        

java.lang.Object

android.view. ViewGroup.LayoutParams

android.widget.Gallery.LayoutParams

 

 

  二、類概述

 

Gallery(畫廊)擴展了LayoutParams,以此提供可以容納當前的轉換信息和先前的位置轉換信息的場所。

 

 

  三、補充

 

  1. public View getView(int position, View convertView, ViewGroup parent)  
  2.     {  
  3.         ImageView imageView = new ImageView(mContext);  
  4.             // 設置當前圖像的圖像(position為當前圖像列表的位置)  
  5.         imageView.setImageResource(resIds[position]);  
  6.         imageView.setScaleType(ImageView.ScaleType.FIT_XY);  
  7.         imageView.setLayoutParams(new Gallery.LayoutParams(163, 106));
  8.         // 設置Gallery組件的背景風格  
  9.         imageView.setBackgroundResource(mGalleryItemBackground);  
  10.         return imageView;  
  11.     }

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved