首页 > 代码库 > android使用TextView实现跑马灯的效果(1)
android使用TextView实现跑马灯的效果(1)
android使用TextView实现跑马灯的效果
1.activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.imooc.marqueetextviewdemo.MainActivity">
<TextView
android:id="@+id/tv_01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/name" />
</RelativeLayout>
2.text文字内容:
strings.xml:
<resources>
<string name="app_name">MarqueeTextViewDemo</string>
<string name="name">MarqueeTextViewDemo,MarqueeTextViewDemo,MarqueeTextViewDemo,MarqueeTextViewDemo</string>
</resources>
图例:
未设置任何属性之前文字过多,自动换行显示。
3.设置单行跑马灯
只需要在TextView中添加4条属性
android:singleLine="true" //设置文字为一行显示,未能显示的文字用三个“...”显示
android:ellipsize="marquee" //去掉三个“...”
android:focusable="true"
android:focusableInTouchMode="true"
完整代码例:
<TextView
android:id="@+id/tv_01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/name"
android:singleLine="true"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
/>
图例:
未运行layout里显示样式,整个为一行。
运行效果图例:
文字开始跑马灯了。
android使用TextView实现跑马灯的效果(1)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。