Android TextView走马灯效果

来源:互联网 发布:网络直播软件哪个好 编辑:程序博客网 时间:2024/05/15 01:13

http://www.cnblogs.com/mengdd/archive/2013/09/11/3314031.html

 布局:

复制代码
 <TextView        android:id="@+id/myTextView"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:ellipsize="marquee"        android:marqueeRepeatLimit="marquee_forever"        android:scrollHorizontally="true"        android:singleLine="true"        android:text="hello world my dear friend this is a long long string~~~~hello world my dear friend this is a long long string" />
复制代码

  

  还需要在程序中进行控制:

复制代码
        TextView mTextView = (TextView) findViewById(R.id.myTextView);        // 开始走马灯效果        mTextView.setSelected(true);        // 停止走马灯效果        // mTextView.setSelected(false);
复制代码

 


原创粉丝点击