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{
- @Override
- protected 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提供转换的View
- switcher.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() {
- @Override
- public void onClick(View v) {
- //为TextSwitcher设置显示内容,执行一次switcher.setText()方法,就会切换到下一个View
- switcher.setText(String.valueOf(new Random().nextInt()));
- }
- });
- }
- // 重写 ViewSwitcher.ViewFactory 的 makeView()方法,返回一个 View,TextSwitcher 交换时使用
- @Override
- public View makeView() {
- TextView textView = new TextView(this);
- textView.setTextSize(36);
- return textView;
- }
- }
ps: 关于如何更改TextSwitcher字体颜色的问题
这个问题咋一看简单,但是没有门路的话,半天也解决不了,我也遇到了这个问题,我的TextSwitcher默认颜色是灰色,和我的背景图颜色差不多了,想改个颜色,但是找了很久也找不到解决办法。
弄了一小时才找到解决的办法(还要感谢某群的群主“飞雪无情”)给我的提示~~
现特贴出解决方案(其实很简单,但是一时想不到的话,也会让人很抓狂):
public View makeView() {
TextView tv = new TextView(this);
tv.setTextSize(36);
tv.setTextColor(Color.BLACK);
return tv;
}
修改TextSwitcher的makeView()中的 tv.setTextColor(Color.BLACK); 就好了。
来源:oschina
链接:https://my.oschina.net/u/1176130/blog/425719