我提出申請,並在申請我想拍一些文本這部分是大膽和部分正常是這樣的:Android的粗體字不工作
蛋糕嘗試以使這個美味的蛋糕蘿蔔。
在我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>
結果是不是我除了。我得到的只是「蛋糕」一詞,而不是大膽的。
http://stackoverflow.com/questions/1529068/is-it-possible-to-have-multiple-styles-inside-a-textview – craig65535