Android ImageSwitcher

转载:http://www.2cto.com/kf/201205/131775.html

学习ImageSwitcher做相册的网址:

http://www.cnblogs.com/salam/archive/2010/10/06/1844660.html

http://www.apkbus.com/android-51651-1-1.html


继承关系

    ImageSwitcher和TextSwitcher的继承关系是一样的,都继承两个重要的父类:ViewSwitcher和ViewAnimator:

    继承于ViewSwitcher,说明具备了切换功能; 继承于ViewAnimator,说明具备了动画功能。
          \
ImageSwitcher原理

1.ImageSwitcher粗略的理解就是ImageView的选择器。

2.ImageSwitcher的原理:ImageSwitcher有两个子View:都是ImageView,当左右滑动的时候,就在这两个ImageView之间来回切换图片。

3.详解Android自带的source,让更深的理解之:

注:补充

    setImageURI(Uri uri):设置图片地址

    setImageResource(int resid):设置图片资源库

    setImageDrawable(Drawable drawable):绘制图片


既然有两个子ImageView,那么我们要创建两个ImageView给ImageSwitcher。使ImageSwitcher具有ImageView的能力,是通过ViewFactory来实现的,也就是说,第一步,让之具有ViewFactory的能力,下面代码:

[java]  imageSwicher.setFactory(this); //为imageSwitcher创建ViewFactory


//实现ViewFactory的makeView()方法,makeView()方法就是负责给ImageSwitcher创建两个字ImageView

[java] @Override 

public View makeView() { 
       ImageView imageView = new ImageView(this); 
       imageView.setImageResource(arrayPictures[pictureIndex]); 
       return imageView; 



下面再来看看setFactory()方法的具体代码

[java]  public void setFactory(ViewFactory factory) { 
              mFactory = factory; 
              obtainView(); 
              obtainView(); 

        } 
    可以看到在setFactory的同时,调用了两遍obtainView()方法。

obtainView()方法,就是给ImageSwitcher添加子ImageView的,调用两遍就是添加了两个子ImageView。


再来看看obtainView()方法的具体代码

[java] 

    private View obtainView() { 
           View child = mFactory.makeView(); 
           LayoutParams lp = (LayoutParams) child.getLayoutParams(); 
           if (lp == null) { 
                lp = new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT); 
           } 
          addView(child, lp); 
          return child; 
       } 
    可以看到obtainView()方法的的职责就是:通过makeView()方法创建View,然后把创建出来的View添加到ImageSwitcher上。


再来看看下面的方法

[java] public void setImageResource(int resid) 

    ImageView image = (ImageView)this.getNextView(); 
        image.setImageResource(resid); 
        showNext(); 


    此方法就是用来显示下一张图片的。

我们可以看到这个方法里面调用了getNextView()方法和showNext()方法,那么我们来看看这两个方法的具体代码

[java]  

public View getNextView() { 
       int which = mWhichChild == 0 ? 1 : 0; 
       return getChildAt(which); 

[java] 

public void showNext() { 
       setDisplayedChild(mWhichChild + 1); 


    getNextView()方法是在两个子ImageView之间切换,showNext()方法是负责显示这两个子View中的哪一个。

也就是说,现用getNextView()方法得到下一个View,然后重新设置这个View的imageResource,最后通过showNext()方法将下一个View显示出来。


ImageSwitcher实例

main.xml


[html] <?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/imageSwicher" 
        android:layout_width="fill_parent" 
        android:layout_height="0dip" 
        android:layout_weight="1" 
        android:background="@android:color/white" 
        android:gravity="center" > 
    </ImageSwitcher> 
 
</LinearLayout> 
<?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/imageSwicher"
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:layout_weight="1"
        android:background="@android:color/white"
        android:gravity="center" >
    </ImageSwitcher>

</LinearLayout>
ImageSwicherDemoActivity.java


[java] package com.tianjf; 
 
import android.app.Activity; 
import android.os.Bundle; 
import android.view.MotionEvent; 
import android.view.View; 
import android.view.View.OnTouchListener; 
import android.view.animation.AnimationUtils; 
import android.widget.ImageSwitcher; 
import android.widget.ImageView; 
import android.widget.ViewSwitcher.ViewFactory; 
 
/**
 * 一个左右滑动浏览图片的Demo
 * 
 * @author tianjf
 * 
 */ 
public class ImageSwicherDemoActivity extends Activity implements ViewFactory, 
        OnTouchListener { 
 
    private ImageSwitcher imageSwicher; 
 
    // 图片数组  
    private int[] arrayPictures = { R.drawable.bg001, R.drawable.bg002, 
            R.drawable.bg003, R.drawable.bg004 }; 
    // 要显示的图片在图片数组中的Index  
    private int pictureIndex; 
    // 左右滑动时手指按下的X坐标  
    private float touchDownX; 
    // 左右滑动时手指松开的X坐标  
    private float touchUpX; 
 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.main); 
 
        imageSwicher = (ImageSwitcher) findViewById(R.id.imageSwicher); 
 
        // 为ImageSwicher设置Factory,用来为ImageSwicher制造ImageView  
        imageSwicher.setFactory(this); 
        // 设置ImageSwitcher左右滑动事件  
        imageSwicher.setOnTouchListener(this); 
    } 
 
    @Override 
    public View makeView() { 
        ImageView imageView = new ImageView(this); 
        imageView.setImageResource(arrayPictures[pictureIndex]); 
        return imageView; 
    } 
 
    @Override 
    public boolean onTouch(View v, MotionEvent event) { 
        if (event.getAction() == MotionEvent.ACTION_DOWN) { 
            // 取得左右滑动时手指按下的X坐标  
            touchDownX = event.getX(); 
            return true; 
        } else if (event.getAction() == MotionEvent.ACTION_UP) { 
            // 取得左右滑动时手指松开的X坐标  
            touchUpX = event.getX(); 
            // 从左往右,看前一张  
            if (touchUpX - touchDownX > 100) { 
                // 取得当前要看的图片的index  
                pictureIndex = pictureIndex == 0 ? arrayPictures.length - 1 
                        : pictureIndex - 1; 
                // 设置图片切换的动画  
                imageSwicher.setInAnimation(AnimationUtils.loadAnimation(this, 
                        android.R.anim.slide_in_left)); 
                imageSwicher.setOutAnimation(AnimationUtils.loadAnimation(this, 
                        android.R.anim.slide_out_right)); 
                // 设置当前要看的图片  
                imageSwicher.setImageResource(arrayPictures[pictureIndex]); 
                // 从右往左,看下一张  
            } else if (touchDownX - touchUpX > 100) { 
                // 取得当前要看的图片的index  
                pictureIndex = pictureIndex == arrayPictures.length - 1 ? 0 
                        : pictureIndex + 1; 
                // 设置图片切换的动画  
                // 由于Android没有提供slide_out_left和slide_in_right,所以仿照slide_in_left和slide_out_right编写了slide_out_left和slide_in_right  
                imageSwicher.setInAnimation(AnimationUtils.loadAnimation(this, 
                        R.anim.slide_out_left)); 
                imageSwicher.setOutAnimation(AnimationUtils.loadAnimation(this, 
                        R.anim.slide_in_right)); 
                // 设置当前要看的图片  
                imageSwicher.setImageResource(arrayPictures[pictureIndex]); 
            } 
            return true; 
        } 
        return false; 
    } 

package com.tianjf;

import android.app.Activity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.view.animation.AnimationUtils;
import android.widget.ImageSwitcher;
import android.widget.ImageView;
import android.widget.ViewSwitcher.ViewFactory;

/**
 * 一个左右滑动浏览图片的Demo
 *
 * @author tianjf
 *
 */
public class ImageSwicherDemoActivity extends Activity implements ViewFactory,
  OnTouchListener {

 private ImageSwitcher imageSwicher;

 // 图片数组
 private int[] arrayPictures = { R.drawable.bg001, R.drawable.bg002,
   R.drawable.bg003, R.drawable.bg004 };
 // 要显示的图片在图片数组中的Index
 private int pictureIndex;
 // 左右滑动时手指按下的X坐标
 private float touchDownX;
 // 左右滑动时手指松开的X坐标
 private float touchUpX;

 @Override
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);

  imageSwicher = (ImageSwitcher) findViewById(R.id.imageSwicher);

  // 为ImageSwicher设置Factory,用来为ImageSwicher制造ImageView
  imageSwicher.setFactory(this);
  // 设置ImageSwitcher左右滑动事件
  imageSwicher.setOnTouchListener(this);
 }

 @Override
 public View makeView() {
  ImageView imageView = new ImageView(this);
  imageView.setImageResource(arrayPictures[pictureIndex]);
  return imageView;
 }

 @Override
 public boolean onTouch(View v, MotionEvent event) {
  if (event.getAction() == MotionEvent.ACTION_DOWN) {
   // 取得左右滑动时手指按下的X坐标
   touchDownX = event.getX();
   return true;
  } else if (event.getAction() == MotionEvent.ACTION_UP) {
   // 取得左右滑动时手指松开的X坐标
   touchUpX = event.getX();
   // 从左往右,看前一张
   if (touchUpX - touchDownX > 100) {
    // 取得当前要看的图片的index
    pictureIndex = pictureIndex == 0 ? arrayPictures.length - 1
      : pictureIndex - 1;
    // 设置图片切换的动画
    imageSwicher.setInAnimation(AnimationUtils.loadAnimation(this,
      android.R.anim.slide_in_left));
    imageSwicher.setOutAnimation(AnimationUtils.loadAnimation(this,
      android.R.anim.slide_out_right));
    // 设置当前要看的图片
    imageSwicher.setImageResource(arrayPictures[pictureIndex]);
    // 从右往左,看下一张
   } else if (touchDownX - touchUpX > 100) {
    // 取得当前要看的图片的index
    pictureIndex = pictureIndex == arrayPictures.length - 1 ? 0
      : pictureIndex + 1;
    // 设置图片切换的动画
    // 由于Android没有提供slide_out_left和slide_in_right,所以仿照slide_in_left和slide_out_right编写了slide_out_left和slide_in_right
    imageSwicher.setInAnimation(AnimationUtils.loadAnimation(this,
      R.anim.slide_out_left));
    imageSwicher.setOutAnimation(AnimationUtils.loadAnimation(this,
      R.anim.slide_in_right));
    // 设置当前要看的图片
    imageSwicher.setImageResource(arrayPictures[pictureIndex]);
   }
   return true;
  }
  return false;
 }
}
由于Android没有提供slide_out_left和slide_in_right,所以仿照slide_in_left和slide_out_right编写了slide_out_left和slide_in_right,代码如下:

slide_in_right.xml


[html] <?xml version="1.0" encoding="utf-8"?> 
<set xmlns:android="http://schemas.android.com/apk/res/android"> 
    <translate android:fromXDelta="50%p" android:toXDelta="0" android:duration="300"/> 
    <alpha android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="300" /> 
</set> 
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate android:fromXDelta="50%p" android:toXDelta="0" android:duration="300"/>
    <alpha android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="300" />
</set>
slide_out_left.xml


[html] <?xml version="1.0" encoding="utf-8"?> 
<set xmlns:android="http://schemas.android.com/apk/res/android"> 
    <translate android:fromXDelta="0" android:toXDelta="-50%p" android:duration="300"/> 
    <alpha android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="300" /> 
</set> 
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate android:fromXDelta="0" android:toXDelta="-50%p" android:duration="300"/>
    <alpha android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="300" />
</set>

 


好了ImageSwitcher的讲解到此结束,下面附上一个和ImageSwitcher差不多的TextSwitcher的Demo。

由于TextSwitcher的原理和ImageSwitcher一样,只是一个是ImageView,一个是TextView。那么在此就不多说,直接上代码

main.xml


[html] <?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" > 
 
    <TextSwitcher 
        android:id="@+id/textSwicher" 
        android:layout_width="fill_parent" 
        android:layout_height="0dip" 
        android:layout_weight="1" 
        android:background="@android:color/white" 
        android:gravity="center" > 
    </TextSwitcher> 
 
</LinearLayout> 
<?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" >

    <TextSwitcher
        android:id="@+id/textSwicher"
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:layout_weight="1"
        android:background="@android:color/white"
        android:gravity="center" >
    </TextSwitcher>

</LinearLayout>
TextSwitcherDemoActivity.java


[java] package com.tianjf; 
 
import android.app.Activity; 
import android.os.Bundle; 
import android.view.Gravity; 
import android.view.MotionEvent; 
import android.view.View; 
import android.view.View.OnTouchListener; 
import android.view.ViewGroup.LayoutParams; 
import android.view.animation.AnimationUtils; 
import android.widget.TextSwitcher; 
import android.widget.TextView; 
import android.widget.ViewSwitcher.ViewFactory; 
 
/**
 * 一个左右滑动浏览文本的Demo
 * 
 * @author tianjf
 * 
 */ 
public class TextSwitcherDemoActivity extends Activity implements ViewFactory, 
        OnTouchListener { 
 
    private TextSwitcher textSwicher; 
 
    // 图片数组  
    private String[] arrayTexts = { "文本01", "文本02", "文本03", "文本04" }; 
    // 要显示的图片在图片数组中的Index  
    private int textIndex; 
    // 左右滑动时手指按下的X坐标  
    private float touchDownX; 
    // 左右滑动时手指松开的X坐标  
    private float touchUpX; 
 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.main); 
 
        textSwicher = (TextSwitcher) findViewById(R.id.textSwicher); 
 
        // 为TextSwitcher设置Factory,用来为TextSwitcher制造TextView  
        textSwicher.setFactory(this); 
        // 设置TextSwitcher左右滑动事件  
        textSwicher.setOnTouchListener(this); 
    } 
 
    @Override 
    public View makeView() { 
        TextView textView = new TextView(this); 
        textView.setTextSize(100); 
        textView.setLayoutParams(new TextSwitcher.LayoutParams( 
                LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT)); 
        textView.setGravity(Gravity.CENTER); 
        textView.setText(arrayTexts[textIndex]); 
        return textView; 
    } 
 
    @Override 
    public boolean onTouch(View v, MotionEvent event) { 
        if (event.getAction() == MotionEvent.ACTION_DOWN) { 
            // 取得左右滑动时手指按下的X坐标  
            touchDownX = event.getX(); 
            return true; 
        } else if (event.getAction() == MotionEvent.ACTION_UP) { 
            // 取得左右滑动时手指松开的X坐标  
            touchUpX = event.getX(); 
            // 从左往右,看前一文本  
            if (touchUpX - touchDownX > 100) { 
                // 取得当前要看的文本的index  
                textIndex = textIndex == 0 ? arrayTexts.length - 1 
                        : textIndex - 1; 
                // 设置文本切换的动画  
                textSwicher.setInAnimation(AnimationUtils.loadAnimation(this, 
                        android.R.anim.slide_in_left)); 
                textSwicher.setOutAnimation(AnimationUtils.loadAnimation(this, 
                        android.R.anim.slide_out_right)); 
                // 设置当前要看的文本  
                textSwicher.setText(arrayTexts[textIndex]); 
                // 从右往左,看下一张  
            } else if (touchDownX - touchUpX > 100) { 
                // 取得当前要看的文本的index  
                textIndex = textIndex == arrayTexts.length - 1 ? 0 
                        : textIndex + 1; 
                // 设置文本切换的动画  
                // 由于Android没有提供slide_out_left和slide_in_right,所以仿照slide_in_left和slide_out_right编写了slide_out_left和slide_in_right  
                textSwicher.setInAnimation(AnimationUtils.loadAnimation(this, 
                        R.anim.slide_out_left)); 
                textSwicher.setOutAnimation(AnimationUtils.loadAnimation(this, 
                        R.anim.slide_in_right)); 
                // 设置当前要看的文本  
                textSwicher.setText(arrayTexts[textIndex]); 
            } 
            return true; 
        } 
        return false; 
    } 

package com.tianjf;

import android.app.Activity;
import android.os.Bundle;
import android.view.Gravity;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.view.ViewGroup.LayoutParams;
import android.view.animation.AnimationUtils;
import android.widget.TextSwitcher;
import android.widget.TextView;
import android.widget.ViewSwitcher.ViewFactory;

/**
 * 一个左右滑动浏览文本的Demo
 *
 * @author tianjf
 *
 */
public class TextSwitcherDemoActivity extends Activity implements ViewFactory,
  OnTouchListener {

 private TextSwitcher textSwicher;

 // 图片数组
 private String[] arrayTexts = { "文本01", "文本02", "文本03", "文本04" };
 // 要显示的图片在图片数组中的Index
 private int textIndex;
 // 左右滑动时手指按下的X坐标
 private float touchDownX;
 // 左右滑动时手指松开的X坐标
 private float touchUpX;

 @Override
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);

  textSwicher = (TextSwitcher) findViewById(R.id.textSwicher);

  // 为TextSwitcher设置Factory,用来为TextSwitcher制造TextView
  textSwicher.setFactory(this);
  // 设置TextSwitcher左右滑动事件
  textSwicher.setOnTouchListener(this);
 }

 @Override
 public View makeView() {
  TextView textView = new TextView(this);
  textView.setTextSize(100);
  textView.setLayoutParams(new TextSwitcher.LayoutParams(
    LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
  textView.setGravity(Gravity.CENTER);
  textView.setText(arrayTexts[textIndex]);
  return textView;
 }

 @Override
 public boolean onTouch(View v, MotionEvent event) {
  if (event.getAction() == MotionEvent.ACTION_DOWN) {
   // 取得左右滑动时手指按下的X坐标
   touchDownX = event.getX();
   return true;
  } else if (event.getAction() == MotionEvent.ACTION_UP) {
   // 取得左右滑动时手指松开的X坐标
   touchUpX = event.getX();
   // 从左往右,看前一文本
   if (touchUpX - touchDownX > 100) {
    // 取得当前要看的文本的index
    textIndex = textIndex == 0 ? arrayTexts.length - 1
      : textIndex - 1;
    // 设置文本切换的动画
    textSwicher.setInAnimation(AnimationUtils.loadAnimation(this,
      android.R.anim.slide_in_left));
    textSwicher.setOutAnimation(AnimationUtils.loadAnimation(this,
      android.R.anim.slide_out_right));
    // 设置当前要看的文本
    textSwicher.setText(arrayTexts[textIndex]);
    // 从右往左,看下一张
   } else if (touchDownX - touchUpX > 100) {
    // 取得当前要看的文本的index
    textIndex = textIndex == arrayTexts.length - 1 ? 0
      : textIndex + 1;
    // 设置文本切换的动画
    // 由于Android没有提供slide_out_left和slide_in_right,所以仿照slide_in_left和slide_out_right编写了slide_out_left和slide_in_right
    textSwicher.setInAnimation(AnimationUtils.loadAnimation(this,
      R.anim.slide_out_left));
    textSwicher.setOutAnimation(AnimationUtils.loadAnimation(this,
      R.anim.slide_in_right));
    // 设置当前要看的文本
    textSwicher.setText(arrayTexts[textIndex]);
   }
   return true;
  }
  return false;
 }
}
slide_in_right.xml和slide_out_left.xml可以参照ImageSwitcher的Demo,在此就不重复了。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值