首页 > 移动平台 > 详细

android TextView实现跑马灯效果(字体滚动)

时间:2016-11-25 11:56:45      阅读:352      评论:0      收藏:0      [点我收藏+]
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.myapplication.MainActivity">
<!--
android:singleLine="true"    //文字一行显示
android:ellipsize="marquee"  //跑马灯属性
android:focusable="true"    //TextView是否可以获取焦点
android:focusableInTouchMode="true"  //文字滑动的时候是否可以获取焦点
-->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="zxcvbnmasdfghjklqwertsssssssssssssssssssssssyuiop"
android:textSize="24sp"
android:singleLine="true"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"/>
</LinearLayout>

android TextView实现跑马灯效果(字体滚动)

原文:http://www.cnblogs.com/fengzikuange/p/6100865.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!