如题, 在xml布局中写ellipsize,手机测试并没有效果: android:singleLine="true" android:ellipsize="marquee" android:focusable="true" android:focusableInTouchMode="true" android:scrollHorizontally="true" android:textIsSelectable="true"
如下方法亲测有效,在代码中手动赋值,无需在布局中设置。
public static void setTextMarquee(TextView textView) { if (textView != null) { textView.setSingleLine(true); textView.setEllipsize(TextUtils.TruncateAt.MARQUEE); textView.setSelected(true); textView.setFocusable(true); textView.setFocusableInTouchMode(true); } }