Android中的字幕文本如何在Android应用程序中使用选框文本?
3 回答
翻阅古今
TA贡献1780条经验 获得超5个赞
TextView textView = (TextView) this.findViewById(R.id.textview_marquee);
textView.setEllipsize(TruncateAt.MARQUEE);
textView.setText("General Information... general information... General Information");
textView.setSelected(true);
textView.setSingleLine(true);
- 3 回答
- 0 关注
- 491 浏览
添加回答
举报
0/150
提交
取消