Android UI控制元件系列:Gallery(畫廊檢視)
Gallery能夠水平顯示其內容,一般用來瀏覽圖片,被選中的選項位於中間,並且可以相應事件顯示資訊。下面結合ImageSwitcher元件來實現一個通過縮圖來瀏覽圖片的程式,具體步驟如下
第一步:
建立一個Andorid工程”GalleryTest”,該工程的入口是Activity類GalleryTest繼承Activity並實現OnItemSelectedListener和ViewFactory介面,來實現圖片和檢視的建立
package org.hualang.Gallery; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.AdapterView.OnItemSelectedListener; import android.widget.ViewSwitcher.ViewFactory; //繼承Activity,實現onItemSelectedListener和ViewFactory介面 public class GalleryTest extends Activity implements OnItemSelectedListener,ViewFactory{ /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); } @Override public View makeView() { // TODO Auto-generated method stub return null; } @Override public void onItemSelected(AdapterView<?> arg0, View arg1, int arg2, long arg3) { // TODO Auto-generated method stub } @Override public void onNothingSelected(AdapterView<?> arg0) { // TODO Auto-generated method stub } }
第二步:
在工程的res\drawable\目錄下新增7張圖片和對應的縮圖
第三步:
在工程res\layout\目錄下建立一個佈局檔案main.xml,在其中那個新增一個Gallery元件和一個ImageSwitcher元件,並設定相應的屬性
<?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" > <ImageSwitcher android:id="@+id/switcher" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_alignParentTop="true" android:layout_alignParentLeft="true" /> <Gallery android:id="@+id/gallery" android:background="#55000000" android:layout_width="fill_parent" android:layout_height="60dp" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:gravity="center_vertical" android:spacing="16dp" /> </LinearLayout>
第四步:在GalleryTest頂部宣告使用到的ImageSwitcher例項圖片資源Integer陣列
public class GalleryTest extends Activity implements OnItemSelectedListener,ViewFactory{ /** Called when the activity is first created. */ //宣告ImageSwitcher private ImageSwitcher switcher; //縮圖片id陣列 private Integer[] thumbids={ R.drawable.thumb0, R.drawable.thumb1, R.drawable.thumb2, R.drawable.thumb3, R.drawable.thumb4, R.drawable.thumb5, R.drawable.thumb6, R.drawable.thumb7 }; //圖片id陣列 private Integer[] imgids={ R.drawable.img0, R.drawable.img1, R.drawable.img2, R.drawable.img3, R.drawable.img4, R.drawable.img5, R.drawable.img6, R.drawable.img7 };
第五步:
在GalleryTest的onCreate()方法中,將視窗樣式設定為無標題,設定當前佈局檢視,獲得ImageSwitcher例項,並設定漸進漸出動畫,獲得Gallery例項
public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //設定視窗特徵無標題 requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.main); //通過findViewById方法獲得ImageSwitcher物件 switcher=(ImageSwitcher)findViewById(R.id.switcher); //為ImageSwitcher設定工廠 switcher.setFactory(this); //設定動畫漸入效果 switcher.setInAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_in)); //設定動畫漸出效果 switcher.setOutAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_out)); //通過findViewById方法獲得Gallery物件 Gallery g=(Gallery)findViewById(R.id.gallery); }
第六步:
建立內部類ImageAdapter,該類繼承BaseAdapter,為Gallery設定Adapter例項
public class ImageAdapter extends BaseAdapter { //構造方法 public ImageAdapter(Context c) { mContext = c; } //獲得數量 public int getCount() { return thumbids.length; } //獲得當前選項 public Object getItem(int position) { return position; } //獲得當前選項ID public long getItemId(int position) { return position; } //獲得View物件 public View getView(int position, View convertView, ViewGroup parent) { //例項化ImageView物件 ImageView i = new ImageView(mContext); //設定縮圖片資源 i.setImageResource(thumbids[position]); //設定邊界對齊 i.setAdjustViewBounds(true); //設定佈局引數 i.setLayoutParams(new Gallery.LayoutParams( LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); //設定背景資源 i.setBackgroundResource(R.drawable.picturefrom); return i; } private Context mContext; }
第七步:
實現onItemSelected()方法,更換圖片
@Override public void onItemSelected(AdapterView<?> adapter, View v, int position, long id) { switcher.setImageResource(imgids[position]); }
第八步:
實現makeView()方法,為ImageView設定佈局格式
@Override public View makeView() { // TODO Auto-generated method stub //建立ImageView ImageView i=new ImageView(this); //設定背景顏色 i.setBackgroundColor(0xFF000000); //設定精度型別 i.setScaleType(ImageView.ScaleType.FIT_CENTER); //設定佈局引數 i.setLayoutParams(new ImageSwitcher.LayoutParams( LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT)); return i; }
第九步:
為Gallery新增Adapter並新增OnItemSelectedListener監聽器
g.setAdapter(new ImageAdapter(this)); g.setOnItemSelectedListener(this);
至此,全部,結束,執行結果如下
完整原始碼:
package org.hualang.Gallery; import android.app.Activity; import android.content.Context; import android.os.Bundle; import android.view.View; import android.view.ViewGroup; import android.view.Window; import android.view.animation.AnimationUtils; import android.widget.AdapterView; import android.widget.BaseAdapter; import android.widget.Gallery; import android.widget.ImageSwitcher; import android.widget.ImageView; import android.widget.AdapterView.OnItemSelectedListener; import android.widget.Gallery.LayoutParams; import android.widget.ViewSwitcher.ViewFactory; public class GalleryTest extends Activity implements OnItemSelectedListener, ViewFactory { private ImageSwitcher mSwitcher; private Integer[] mThumbIds = { R.drawable.thumb0, R.drawable.thumb1, R.drawable.thumb2, R.drawable.thumb3, R.drawable.thumb4, R.drawable.thumb5, R.drawable.thumb6, R.drawable.thumb7 }; private Integer[] mImageIds = { R.drawable.img0, R.drawable.img1, R.drawable.img2, R.drawable.img3, R.drawable.img4, R.drawable.img5, R.drawable.img6, R.drawable.img7 }; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.main); mSwitcher = (ImageSwitcher) findViewById(R.id.switcher); mSwitcher.setFactory(this); mSwitcher.setInAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_in)); mSwitcher.setOutAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_out)); Gallery g = (Gallery) findViewById(R.id.gallery); g.setAdapter(new ImageAdapter(this)); g.setOnItemSelectedListener(this); } public class ImageAdapter extends BaseAdapter { public ImageAdapter(Context c) { mContext = c; } public int getCount() { return mThumbIds.length; } public Object getItem(int position) { return position; } public long getItemId(int position) { return position; } public View getView(int position, View convertView, ViewGroup parent) { ImageView i = new ImageView(mContext); i.setImageResource(mThumbIds[position]); i.setAdjustViewBounds(true); i.setLayoutParams(new Gallery.LayoutParams( LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); i.setBackgroundResource(R.drawable.picturefrom); return i; } private Context mContext; } @Override public void onItemSelected(AdapterView<?> adapter, View v, int position, long id) { mSwitcher.setImageResource(mImageIds[position]); } @Override public void onNothingSelected(AdapterView<?> arg0) { } @Override public View makeView() { ImageView i = new ImageView(this); i.setBackgroundColor(0xFF000000); i.setScaleType(ImageView.ScaleType.FIT_CENTER); i.setLayoutParams(new ImageSwitcher.LayoutParams( LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT)); return i; } }
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ImageSwitcher android:id="@+id/switcher" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_alignParentTop="true" android:layout_alignParentLeft="true" /> <Gallery android:id="@+id/gallery" android:background="#55000000" android:layout_width="fill_parent" android:layout_height="60dp" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:gravity="center_vertical" android:spacing="16dp" /> </RelativeLayout>
相關文章
- Android UI控制元件系列:WebView(網路檢視)AndroidUI控制元件WebView
- 處理好item點選事件的gallery(畫廊)效果(無bug)事件
- 使用 RecyclerView 實現 Gallery 畫廊效果,並控制 Item 停留位置View
- Android UI控制元件系列:Toast(提示)AndroidUI控制元件AST
- Android UI控制元件系列:Button(按鈕)AndroidUI控制元件
- Android UI控制元件系列:TextView(文字框)AndroidUI控制元件TextView
- Android UI控制元件系列:TableLayout(表格佈局)AndroidUI控制元件
- Android UI控制元件系列:Spinner(下拉選單)AndroidUI控制元件
- Android UI控制元件系列:ProgressBar(進度條)AndroidUI控制元件
- Android UI控制元件系列:TabWidget(切換卡)AndroidUI控制元件
- Android UI控制元件系列:AutoCompleteTextView(自動提示)AndroidUI控制元件TextView
- Android UI控制元件系列:Tab Layout(選項卡布局)AndroidUI控制元件
- Android UI控制元件系列:RelativeLayout(相對佈局)AndroidUI控制元件
- Android UI控制元件系列:GridView(網格佈局)AndroidUI控制元件View
- Android UI控制元件系列:Dialog(對話方塊)AndroidUI控制元件
- SAP UI5 檢視裡的 OverflowToolbar 控制元件UI控制元件
- 深入學習UI5框架程式碼系列之八:談談UI5 的檢視控制元件 ID,以及其和 Angular 檢視的異同UI框架控制元件Angular
- Android UI控制元件系列:LinearLayout(線性佈局)AndroidUI控制元件
- Android UI控制元件系列:ImageButton(帶圖示的按鈕)AndroidUI控制元件
- Android UI控制元件系列:RadioButton(單選按鈕)AndroidUI控制元件
- Android照片牆加強版,使用ViewPager實現畫廊效果AndroidViewpager
- 已開源!一款支援鴻蒙 NEXT Android iOS 的 UI 控制元件檢視器.md鴻蒙AndroidiOSUI控制元件
- ios10錶盤畫廊怎麼用 蘋果ios10錶盤畫廊使用教程介紹iOS蘋果
- 使用半透明系統UI擴充套件Android檢視UI套件Android
- Android gallery 3D效果Android3D
- 列表檢視控制元件(轉)控制元件
- Android UI控制元件系列:DatePicker,TimePicker(日期和時間選擇)AndroidUI控制元件
- Android 介面(1):UI 開發控制元件AndroidUI控制元件
- Android UI 設計(4):EditText 控制元件AndroidUI控制元件
- 樹型檢視控制元件(轉)控制元件
- iOS探索:UI檢視之事件傳遞&檢視響應iOSUI事件
- 由旋轉畫廊,看自定義RecyclerView.LayoutManagerView
- Sql Server系列:檢視SQLServer
- iOS10 UI教程檢視的繪製與檢視控制器和檢視iOSUI
- Android高階UI系列(2)-DecorViewAndroidUIView
- Android UI系列-----EditText和AutoCompleteTextViewAndroidUITextView
- viewpager實現畫廊(一屏多個Fragment)效果ViewpagerFragment
- SAP UI5 XML 檢視裡 label 和 text 控制元件文字對齊問題UIXML控制元件