android中TextView中文本滚动的跑马灯效果

网上的代码有些转载的很不负责,自己根本没有测试过。

这是我参考下面链接写的。


1. 设定XML文件属性

        <TextView
            android:id="@+id/textView1"
            android:layout_width="200dp"
            android:layout_height="wrap_content"
            android:ellipsize="marquee"
            android:focusable="true"
            android:focusableInTouchMode="true"
            android:marqueeRepeatLimit="marquee_forever"
            android:scrollHorizontally="true"
            android:singleLine="true"
            android:text="2. 此TextView演示了跑马灯效果, 因此字体内容必须要长。。。。。" />


2. 在没有方向键或滚动球的手机上,即使设置了那几个跑马灯的属性,也不会出现效果。

添加代码

		TextView tv1 = (TextView) findViewById(R.id.textView1);
		tv1.requestFocus();
这样就可以了。。




参考:http://www.cnblogs.com/over140/archive/2010/08/20/1804770.html


你可能感兴趣的:(android中TextView中文本滚动的跑马灯效果)