Android 中文 API (35) —— ImageSwitcher

简介:

一、结构

    public class ImageSwitcher extends ViewSwitcher

    java.lang.Object
       android.view.View
        android.view.ViewGroup
          android.widget.FrameLayout
            android.widget.ViewAnimator
              android.widget.ViewSwitcher
                android.widget.ImageSwitcher

二、概述

    

    (译者注:ImageSwitcherAndroid中控制图片展示效果的一个控件,如:幻灯片效果...,颇有感觉啊,做相册一绝。)

三、公共方法

         public void setImageDrawable (Drawable drawable)

         绘制图片

 public void setImageResource (int resid)

   设置图片资源库

 public void setImageURI (Uri uri)

  设置图片地址

四、补充

    4.1  文章链接

                   Android ImageSwitcher

                   Image Switcher View | Android Developer Tutorial

    4.2  示例代码本文代码转载自这里

      java文件

public   class  mainactivity  extends  Activity  implements
  OnItemSelectedListener, ViewFactory {
 
private  ImageSwitcher is;
 
private  Gallery gallery;

 
private  Integer[] mThumbIds  =  { R.drawable.b, R.drawable.c,
   R.drawable.d, R.drawable.f, R.drawable.g,
   };

 
private  Integer[] mImageIds  =  { R.drawable.b, R.drawable.c,
   R.drawable.d, R.drawable.f, R.drawable.g, };

@Override
 
protected   void  onCreate(Bundle savedInstanceState) {
  
super .onCreate(savedInstanceState);
  requestWindowFeature(Window.FEATURE_NO_TITLE);
  setContentView(R.layout.main);

  is 
=  (ImageSwitcher) findViewById(R.id.switcher);
  is.setFactory(
this );

  is.setInAnimation(AnimationUtils.loadAnimation(
this ,
    android.R.anim.fade_in));
  is.setOutAnimation(AnimationUtils.loadAnimation(
this ,
    android.R.anim.fade_out));

  gallery 
=  (Gallery) findViewById(R.id.gallery);

  gallery.setAdapter(
new  ImageAdapter( this ));
  gallery.setOnItemSelectedListener(
this );
 }

 @Override
 
public  View makeView() {
  ImageView i 
=   new  ImageView( this );
  i.setBackgroundColor(
0xFF000000 );
  i.setScaleType(ImageView.ScaleType.FIT_CENTER);
  i.setLayoutParams(
new  ImageSwitcher.LayoutParams(
    LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
  
return  i;
 }

 
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.e);
   
return  i;
  }

  
private  Context mContext;

 }

 @Override
 
public   void  onItemSelected(AdapterView <?>  parent, View view,  int  position,
   
long  id) {
  is.setImageResource(mImageIds[position]);

 }

 @Override
 
public   void  onNothingSelected(AdapterView <?>  parent) {
 }
}

      xml文件

<? xml version="1.0" encoding="utf-8" ?>
< RelativeLayout  xmlns:android ="http://schemas.android.com/apk/res/android"  
    android:layout_width
="match_parent"  
    android:layout_height
="match_parent" >  
    
    
< ImageSwitcher  android:id ="@+id/switcher"
        android:layout_width
="match_parent"
        android:layout_height
="match_parent"
        android:layout_alignParentTop
="true"
        android:layout_alignParentLeft
="true"
    
/>
    
    
< Gallery  android:id ="@+id/gallery"
        android:background
="#55000000"
        android:layout_width
="match_parent"
        android:layout_height
="60dp"
        android:layout_alignParentBottom
="true"
        android:layout_alignParentLeft
="true"
        
        android:gravity
="center_vertical"
        android:spacing
="16dp"
    
/>
</ RelativeLayout >

 本文转自博客园农民伯伯的博客,原文链接:Android 中文 API (35) —— ImageSwitcher,如需转载请自行联系原博主。

目录
相关文章
|
2月前
|
Android开发
Android 11 修改libcore update-api 遇到的问题
Android 11 修改libcore update-api 遇到的问题
95 1
|
11月前
|
定位技术 API 开发工具
Android 按照步骤接入百度地图API,定位显示不了解决办法
Android 按照步骤接入百度地图API,定位显示不了解决办法
303 0
|
1月前
|
API Android开发 开发者
`RecyclerView`是Android API 21引入的UI组件,用于替代ListView和GridView
【6月更文挑战第26天】`RecyclerView`是Android API 21引入的UI组件,用于替代ListView和GridView。它提供高效的数据视图复用,优化的布局管理,支持多种布局(如线性、网格),并解耦数据、适配器和视图。RecyclerView的灵活性、性能(如局部刷新和动画支持)和扩展性使其成为现代Android开发的首选,特别是在处理大规模数据集时。
31 2
|
1月前
|
Java Linux API
微信API:探究Android平台下Hook技术的比较与应用场景分析
微信API:探究Android平台下Hook技术的比较与应用场景分析
|
2月前
|
SQL API Android开发
Android API:Activity.managedQuery()
Android API:Activity.managedQuery()
26 2
|
2月前
|
API 定位技术 开发工具
Android Studio2021.1.1 高德地图api调用这一篇就够了
Android Studio2021.1.1 高德地图api调用这一篇就够了
|
2月前
|
API Android开发
Android Framework增加API 报错 Missing nullability on parameter
Android Framework增加API 报错 Missing nullability on parameter
156 1
|
2月前
|
API Android开发
对于应用研发平台EMAS中安卓 API 32 收不到 FCM 推送的问题
对于应用研发平台EMAS中安卓 API 32 收不到 FCM 推送的问题
91 3
|
10月前
|
API Android开发
mPaaS(移动跨平台框架)目前已经支持了Android API级别21
mPaaS(移动跨平台框架)目前已经支持了Android API级别21
125 2
|
11月前
|
API 数据库 Android开发
Android SQLite数据库中基础的增删改查操作以及API的详解
Android SQLite数据库中基础的增删改查操作以及API的详解
81 0