gpt4 book ai didi

android - DataBinding 中的 Html.fromHtml - Android

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

我在我的项目中使用 dataBinding,当我有下面的 xml 时,它很好用:

    <TextView
android:id="@+id/txtDateCreate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{String.format(@string/DateCreate,others.created)}" />

但是当我改成吼叫时我崩溃了:

    <TextView
android:id="@+id/txtDateCreate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{Html.fromHtml(String.format(@string/DateCreate,others.created))}" />

在我的 string.xml 中:

<resources>
<string name="DateCreate">open : <![CDATA[<b><font color=#FF0000>%s</b>]]></string>
</resources>

最佳答案

认为需要先在xml中导入html

<data>
<import type="android.text.Html"/>
</data>

<TextView
android:id="@+id/txtDateCreate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{Html.fromHtml(String.format(@string/DateCreate,others.created))}" />

关于android - DataBinding 中的 Html.fromHtml - Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43886956/

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