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 中,如果您通过 XML 布局实例化它,请将 ellipsize 标签添加到您的 TextView:
android:ellipsize="start"
这将导致文本的开头被省略,而不是结尾。
如果您在代码中创建 TextView,请使用:
myTextView.setEllipsize(TextUtils.TruncateAt.START);