默认是下面的属性添加TextView中:
android:ellipsize="marquee"
android:focusableInTouchMode="true"
android:gravity="center"
android:marqueeRepeatLimit="marquee_forev...
分类:
移动开发 时间:
2014-07-22 23:02:15
阅读次数:
388
android的textview自带跑马灯效果,一般使用足够了。不过也有不一般的情况,所以我实现了一个自定义textview控件,用来针对这种不一般情况下的跑马灯效果实现。import
android.content.Context;import android.util.AttributeSet;...
分类:
移动开发 时间:
2014-06-11 12:39:28
阅读次数:
241
android:ellipsize="marquee"
android:focusable="true" android:focusableInTouchMode="true" android:marquee...
分类:
其他好文 时间:
2014-05-26 23:10:37
阅读次数:
262
本程序改编至网上下载的一个自定义控件,原控件是左右滚动效果,类似于跑马灯效果,由于项目需要,改编为上下滚动。前期没有实现自动折行,今天刚加上自动折行。using
System;using System.Collections;using System.ComponentModel;using Sys...
分类:
其他好文 时间:
2014-05-10 22:23:43
阅读次数:
486