欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android之ImageSwitcher的實(shí)例詳解

 更新時間:2017年08月24日 11:45:10   投稿:lqh  
這篇文章主要介紹了Android之ImageSwitcher的實(shí)例詳解的相關(guān)資料,這里提供實(shí)例幫助大家理解這個控件的功能,希望能幫助到大家,需要的朋友可以參考下

Android之ImageSwitcher的實(shí)例詳解

一. 簡單示例

實(shí)例代碼:

public class AndroidUIActivity extends Activity { 
 
  // 當(dāng)前顯示的圖片索引 
  private int index; 
 
  // 圖片數(shù)組 
  private int[] images = { R.drawable.image1, R.drawable.image2, 
      R.drawable.image3, R.drawable.image4, R.drawable.image5 }; 
 
  /** Called when the activity is first created. */ 
  @Override 
  public void onCreate(Bundle savedInstanceState) { 
 
    super.onCreate(savedInstanceState); 
 
    // 全屏設(shè)置 
    requestWindowFeature(Window.FEATURE_NO_TITLE); 
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
        WindowManager.LayoutParams.FLAG_FULLSCREEN); 
 
    setContentView(R.layout.main); 
 
    // 得到ImageSwitcher對象 
    final ImageSwitcher is = (ImageSwitcher) findViewById(R.id.imageSwitcher1); 
 
    // 實(shí)現(xiàn)并設(shè)置工廠內(nèi)部接口的makeView方法,用來顯示視圖。 
    is.setFactory(new ViewFactory() { 
 
      public View makeView() { 
        return new ImageView(AndroidUIActivity.this); 
      } 
    }); 
 
    // 設(shè)置圖片來源 
    is.setImageResource(images[index]); 
 
    // 設(shè)置點(diǎn)擊監(jiān)聽器 
    is.setOnClickListener(new View.OnClickListener() { 
 
      public void onClick(View v) { 
        // 點(diǎn)擊會切換圖片 
        index++; 
        if (index >= images.length) { 
          index = 0; 
        } 
        is.setImageResource(images[index]); 
      } 
    }); 
 
    // 設(shè)置切入動畫 
    is.setInAnimation(AnimationUtils.loadAnimation(getApplicationContext(), 
        android.R.anim.slide_in_left)); 
    // 設(shè)置切出動畫 
    is.setOutAnimation(AnimationUtils.loadAnimation( 
        getApplicationContext(), android.R.anim.slide_out_right)); 
 
  } 
} 

main.xml

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

二. 運(yùn)行結(jié)果

啟動


點(diǎn)擊后切換過程

以上就是Android之ImageSwitcher的實(shí)例詳解,如有疑問請留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

相關(guān)文章

最新評論