TextSwitcher 字面理解是文字交换器,是ViewSwitcher的子类,从ViewSwitcher来看,是View交换器,TextSwitcher继承自ViewSwitcher,显然是交换TextView。
效果图:


应用分为三步:
1.得到 TextSwitcher 实例对象
TextSwitcher switcher = (TextSwitcher) findViewById(R.id.textSwitcher);
2.为switcher指定ViewSwitcher.ViewFactory工厂,该工厂会产生出转换时需要的View
switcher.setFactory(this);
3.为switcher设定显示的内容,该方法执行,就会切换到下个View
switcher.setText(String.valueOf(new Random().nextInt()));

其中 要实现ViewSwitcher.ViewFactory中的makeView()方法
// 重写 ViewSwitcher.ViewFactory 的 makeView()方法,返回一个 View,TextSwitcher 交换时使用
@Override
public View makeView() {
TextView textView = new TextView(this);
textView.setTextSize(36);
return textView;
}

如果不适用ViewSwitcher.ViewFactory,也可以使用下面的方式代替
//如果不用switcher.setFactory()方法设置转换时的View,也可以调用两次switcher.addView(view,index,params);
//其中view为要切换的View,index为索引,params是添加时的宽,高参数
// TextView textView1 = new TextView(this);
// textView1.setTextSize(36);
// textView1.setTextColor(Color.RED);
// TextView textView2 = new TextView(this);
// textView2.setTextSize(36);
// textView2.setTextColor(Color.YELLOW);
// switcher.addView(textView1, 0,new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
// switcher.addView(textView2, 1,new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));

代码:
package com.zhou.activity;import java.util.Random;import android.app.Activity;import android.os.Bundle;import android.view.View;import android.view.animation.Animation;import android.view.animation.AnimationUtils;import android.widget.Button;import android.widget.TextSwitcher;import android.widget.TextView;import android.widget.ViewSwitcher;public class TextSwitcherActivity extends Activity implements ViewSwitcher.ViewFactory{@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);this.setContentView(R.layout.textswithcer);//设置标题setTitle("文字转换器");//取得文字转换器final TextSwitcher switcher = (TextSwitcher) findViewById(R.id.textSwitcher);// 指定转换器的 ViewSwitcher.ViewFactory,ViewSwitcher.ViewFactory会为TextSwitcher提供转换的Viewswitcher.setFactory(this);//如果不用switcher.setFactory()方法设置转换时的View,也可以调用两次switcher.addView(view,index,params);//其中view为要切换的View,index为索引,params是添加时的宽,高参数//TextView textView1 = new TextView(this);//textView1.setTextSize(36);//textView1.setTextColor(Color.RED);//TextView textView2 = new TextView(this);//textView2.setTextSize(36);//textView2.setTextColor(Color.YELLOW);//switcher.addView(textView1, 0,new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));//switcher.addView(textView2, 1,new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));// 设置转换时的淡入和淡出动画效果(可选)Animation in = AnimationUtils.loadAnimation(this, android.R.anim.fade_in);Animation out = AnimationUtils.loadAnimation(this, android.R.anim.fade_out);switcher.setInAnimation(in);switcher.setOutAnimation(out);// 单击一次按钮改变一次文字Button btnChange = (Button) this.findViewById(R.id.btnChange);btnChange.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {//为TextSwitcher设置显示内容,执行一次switcher.setText()方法,就会切换到下一个Viewswitcher.setText(String.valueOf(new Random().nextInt()));}});}// 重写 ViewSwitcher.ViewFactory 的 makeView()方法,返回一个 View,TextSwitcher 交换时使用@Overridepublic View makeView() {TextView textView = new TextView(this);textView.setTextSize(36);return textView;}}

更多相关文章

  1. 总结Android中的Info系列类
  2. Android(安卓)关于ObjectAnimator 的几种状态
  3. android 获取Bitmap 的两种方法
  4. Android(安卓)viewpager里面嵌套使用listview或者ExpandableList
  5. ScrollBy & ScrollTo
  6. Handler机制详述1---Handler的简介和用法
  7. Android——GT库发布
  8. [Android]文件操作模式与SDCard读写访问
  9. Android中的SystemClock类

随机推荐

  1. 地图定位
  2. Android之使用Http协议实现文件上传功能
  3. Android实现读写SD卡
  4. Android(安卓)点亮屏幕
  5. Android(安卓)colors.xml 颜色配置文件
  6. Android(安卓)常用控件自定义样式RadioBu
  7. 自定义RatingBar/SeekBar,重载样式
  8. android中listView实现异步加载网络图片
  9. could not write file\android-7\/syst
  10. 退出 android 应用程序