【发布时间】:2018-05-16 13:20:55
【问题描述】:
【问题讨论】:
-
这可能是watch实现的默认字体的bcz。您是否尝试过使用自定义字体?
-
字符组合“fi”经常被连字替换,其中 i 上的点与 f 融合在一起。这是一项功能,而不是错误。
-
@Henry,你能给我发个参考链接吗?
-
@Henry,非常感谢
【问题讨论】:
通过将 android:fontFeatureSettings="liga 0" 添加到 TextView 来解决此问题
参考链接:Text with "f" following "i", cannot see the dot on the "i", sans font
【讨论】:
试试这个对我有用
添加 xml:
<TextView
android:id="@+id/textview"
android:maxLines="1" // or any number of lines you want
android:ellipsize="end" />
【讨论】: