我们可以创建Scroll TextView作为whatsapp lastseen的状态

Kho*_*ran 6 android whatsapp

我想问一下我们如何创建Scroll TextView操作栏作为Whatsapp lastseen的状态.请打开whatsapp,看看状态是什么样:)

之前: 在此输入图像描述

然后它将开始滚动,我们可以看到这样的文字:"昨天看到......"

滚动后: 在此输入图像描述

Log*_*gic 1

添加以下属性:

<TextView
android:text="text"
android:id="@+id/marquee_text" 
android:layout_width="fill_parent"
android:layout_height="wrap_content" 
android:singleLine="true"
android:ellipsize="marquee" 
android:marqueeRepeatLimit=""//once or marquee_forever
android:scrollHorizontally="true" 
android:paddingLeft="15dip" 
android:paddingRight="15dip" 
android:focusable="true" 
android:focusableInTouchMode="true" 
android:freezesText="true">
Run Code Online (Sandbox Code Playgroud)