-1
我正在使用Android studio文本視圖編寫一小段。我需要幫助Bold一個文本,並強調這個詞。在Textview XML(Android Studio)中強調一個詞並加粗一個單詞
我正在使用Android studio文本視圖編寫一小段。我需要幫助Bold一個文本,並強調這個詞。在Textview XML(Android Studio)中強調一個詞並加粗一個單詞
你應該放在用U標籤並設置文本樣式爲粗體這樣的字符串文件中的文本......
<string name="terms_condition_signup"><u>Please accept the Terms of Conditions</u>.</string>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/loginid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center_vertical"
android:text="@string/terms_condition_signup"
android:textColor="@color/textcolor"
android:textSize="25dp"
android:textStyle="bold"/>
</RelativeLayout>
無法從XML這樣做純粹。參見'Html.fromHtml()'或使用'StyleSpan's – Karakuri
使用SpanableString。這可以幫助http://stackoverflow.com/questions/21496140/most-efficient-way-for-dynamic-text-color-change-in-textview – Tasneem