时间:2021-05-21
Android 上下滚动TextSwitcher实例详解
1.在activity中需要代码声明
textSwitcher = (TextSwitcher)findViewById(R.id.text_switcher); textSwitcher.setFactory(new ViewFactory() { @Override public View makeView() { TextView tv = new TextView(MainActivity.this); tv.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 16.0F); tv.setTextColor(Color.RED); return tv; } }); textSwitcher.setInAnimation(AnimationUtils.loadAnimation(this, R.anim.anim_in)); textSwitcher.setOutAnimation(AnimationUtils.loadAnimation(this, R.anim.anim_out));2.两个anim动画xml
<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android" android:fillAfter="true" android:shareInterpolator="false" android:zAdjustment="top"> <translate android:duration="3000" android:fromYDelta="100%p" android:toYDelta="0" /> </set> <?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android" android:fillAfter="true" android:shareInterpolator="false" android:zAdjustment="top"> <translate android:duration="3000" android:fromYDelta="0" android:toYDelta="-100%p" /> </set> <style name="pop_anim"> <item name="android:windowEnterAnimation">@anim/anim_in</item> <item name="android:windowExitAnimation">@anim/anim_out</item> </style>3.用线程或者定时器实现循环翻动。
Thread t = new Thread(new Runnable() { @Override public void run() { while (!flag) { Message msg = new Message(); msg.what = 1; msg.obj = getItem[i]; handler.sendMessage(msg); if (i== 2) { i = 0; } try { t.sleep(3000); i++; } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }4.hanlder更新ui
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了Android开发实现自动切换文字TextSwitcher功能。分享给大家供大家参考,具体如下:介绍:1.TextSwitcher是ViewSwi
AndroidListView滚动条的设置详解1.滚动条的属性android:scrollbarAlwaysDrawHorizontalTrack设置是否始终显
本文实例为大家分享了Android使用ViewFlipper实现上下滚动消息的具体代码,供大家参考,具体内容如下1.在界面布局中加入ViewFlipper的布局
Android中Context的使用方法详解概要:Context字面意思是上下文,位于frameworkpackage的android.content.Cont
本文实例为大家分享了jquery实现广告上下滚动效果的具体代码,供大家参考,具体内容如下一、jquery上下滚动预约记录jquery广告上下滚动效果,直接上代码