我正在制作一个应用程序,在该应用程序中,我想制作一些部分粗体和部分正常的文本,如下所示:
蛋糕试试这个用胡萝卜做的美味蛋糕。
在我的 main.xml 中,我输入了这个:
<LinearLayout
android:id="@+id/itemone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="20"
android:padding="3dp" >
<ImageView
android:layout_width="110dp"
android:layout_height="85dp"
android:src="@drawable/cake" />
<TextView
android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/cake"
android:textAppearance="?android:attr/textAppearanceSmall" />
</LinearLayout>
在我的 strings.xml 中,我输入了这个:
<string name="cake"><b>Cake</b>\n Try this delicious cake made with carrots.</string>
结果不是我除了。我得到的只是“蛋糕”这个词,而不是粗体。