话不多说直接上代码(很简单)
public boolean isFocused() {
return true;
}
public void setEllipsize(TextUtils.TruncateAt where) {
where = TextUtils.TruncateAt.MARQUEE;//跑马灯
super.setEllipsize(where);
}
TextUtils.TruncateAt.END;
TextUtils.TruncateAt.START;
TextUtils.TruncateAt.MIDDLE;
在xml中,加上下面这一句,这样成功了。
android:singleLine="true"
哈哈,很简单像这样: