我使用Android studio text-view编写一个小段落。我需要大胆的一个文字的帮助,并强调这个词。
答案 0 :(得分:0)
您应该将文本放在带有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>