当前位置:网站首页>Function and usage of textswitch text switcher
Function and usage of textswitch text switcher
2022-07-07 17:36:00 【XLMN】
textSwitch Function and usage of text switcher
testswitch Inherited viewswitch, Therefore, possession and viewswitcher Same features , You can switch view Use animations for components ,
testswitcher and imageview Acquaintance requires a viewfactory, The difference is ,testswitcher need viewfactory Of makeview Return to one textview Components
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);
}
// Define processing functions , Controls the display of the next string
public void next(View source) {
ts.setText(str[curstr++%str.length]);
}
}
<?xml version="1.0" encoding="utf-8"?><!-- Define a testswitcher, And specify the animation effect when text switching -->
<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>

边栏推荐
猜你喜欢

PLC:自动纠正数据集噪声,来洗洗数据集吧 | ICLR 2021 Spotlight

Lex & yacc of Pisa proxy SQL parsing

命令模式 - Unity

【可信计算】第十三次课:TPM扩展授权与密钥管理
Share the latest high-frequency Android interview questions, and take you to explore the Android event distribution mechanism

百度地图自定义样式向右拖拽导致全球地图经度0度无法正常显示

简单的loading动画

Sator推出Web3遊戲“Satorspace” ,並上線Huobi

麒麟信安中标国网新一代调度项目!

What is cloud computing?
随机推荐
【可信计算】第十次课:TPM密码资源管理(二)
第二十四届中国科协湖南组委会调研课题组一行莅临麒麟信安调研考察
【饭谈】那些看似为公司着想,实际却很自私的故事 (一:造轮子)
First in China! Todesk integrates RTC technology into remote desktop, with clearer image quality and smoother operation
The computer cannot add a domain, and the Ping domain name is displayed as the public IP. What is the problem? How to solve it?
策略模式 - Unity
MRS离线数据分析:通过Flink作业处理OBS数据
Sator推出Web3遊戲“Satorspace” ,並上線Huobi
麒麟信安操作系统衍生产品解决方案 | 存储多路径管理系统,有效提高数据传输可靠性
【黄啊码】为什么我建议您选择go,而不选择php?
2021-06-28
SlashData开发者工具榜首等你而定!!!
How to choose the appropriate automated testing tools?
Proxmox VE重装后,如何无损挂载原有的数据盘?
《世界粮食安全和营养状况》报告发布:2021年全球饥饿人口增至8.28亿
【网络攻防原理与技术】第5章:拒绝服务攻击
The mail server is listed in the blacklist. How to unblock it quickly?
管理VDI的几个最佳实践
mysql官网下载:Linux的mysql8.x版本(图文详解)
mysql使用笔记一