码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2016-11-25 11:57:21      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:amp   cat   touch   utf-8   single   1.0   滚动   pre   lin   

<?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实现跑马灯效果(字体滚动)

标签:amp   cat   touch   utf-8   single   1.0   滚动   pre   lin   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!