Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当文本比 textview 短时,有什么方法可以启用文本选取框?
将TextView中的elipsize属性设置为xml文件中的marquee
android:ellipsize="选框"
然后在活动的 onCreate 方法中为 TextView 创建一个对象,并将 setSelectedProperty 设置为 true
textview1.setSelected(true)
来源:以前的 Stackoverflow 答案