您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
本篇文章为大家展示了怎么在Android应用中利用TextSwitcher实现一个上下滚动功能,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。
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
private Handler handler = new Handler(){ public void handleMessage(android.os.Message msg) { textSwitcher.setText((String)msg.obj); super.handleMessage(msg); }; };
上述内容就是怎么在Android应用中利用TextSwitcher实现一个上下滚动功能,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。