当前位置:   article > 正文

textSwitch文本切换器的功能和用法_textswitcher

textswitcher

textSwitch文本切换器的功能和用法
testswitch继承了viewswitch,因此据有和viewswitcher相同的特征,可以在切换view组件时使用动画效果,
testswitcher和imageview相识需要设置一个viewfactory,不同的在于,testswitcher需要viewfactory的makeview返回一个textview组件
public class MainActivity extends Activity {
TextSwitcher ts;
String[] str=new String[]{
“mia”,“love mia”,“miss mia”,“010802”
};
int curstr;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.textswitcher);
ts = (TextSwitcher) findViewById(R.id.textswitcher);
ts.setFactory(new ViewFactory() {

                    @Override
                    public View makeView() {
                            // TODO Auto-generated method stub
                            TextView tv=new TextView(MainActivity.this);
                            tv.setTextSize(40);
                            tv.setTextColor(Color.MAGENTA);
                            return tv;
                    }
            });
            next(null);
    }
    //定义处理函数,控制显示下一个字符串
    public void next(View source) {
            ts.setText(str[curstr++%str.length]);
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

}

<?xml version="1.0" encoding="utf-8"?>

<!-- 定义一个testswitcher,并指定文本切换时的动画效果 -->

<TextSwitcher
    android:id="@+id/textswitcher"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:inAnimation="@android:anim/slide_in_left"
    android:onClick="next"
    android:outAnimation="@android:anim/slide_out_right" >
</TextSwitcher>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/一键难忘520/article/detail/812801
推荐阅读
相关标签
  

闽ICP备14008679号