gpt4 book ai didi

android - 字符串.xml : How to remove underlining from the space preceding an tag?

转载 作者:太空宇宙 更新时间:2023-11-03 11:54:28 25 4
gpt4 key购买 nike

我的 strings.xml 中有以下行:

<string name="test_string">This is a <u>test</u></string>

在我的 Activity xml 中,我在 TextView 中引用了这个字符串:

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/test_string" />

奇怪的是,当我在我的设备(小米 Mi A1,Android 8.0)上运行应用程序时,<u> 之前的空格也有下划线。请注意“a”和“测试”之间带下划线的空格(实际设备的屏幕截图):

device

我还尝试在 strings.xml 中使用以下内容:

<string name="test_string">This is a&#032;<u>test</u></string>

但结果是一样的。有什么想法吗?

最佳答案

我能够在我的模拟器上重现这个。为了解决,我改变了字符串资源如下:

<string name="underline">this is a &lt;u>test&lt;/u></string>

然后,我不是简单地将字符串设置到我的 TextView,而是首先通过 Html.fromHtml() 运行它:

TextView text = findViewById(R.id.text);
String withMarkup = getString(R.string.underline);
text.setText(Html.fromHtml(withMarkup));

关于android - 字符串.xml : How to remove underlining from the space preceding an <u> tag?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49680131/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com