SiteMap

2014年3月17日月曜日

TextView 設定粗體 斜體 底線

字型 TypeFace
字體 Font


----
textView.setTypeface(textView.getTypeface(), Typeface.BOLD);
textView.setTypeface(textView.getTypeface(), Typeface.ITALIC);
textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC);
----
You can set Directly in XML file in <TextView /> like:
android:textStyle="normal"
android:textStyle="normal|bold"
android:textStyle="normal|italic"
android:textStyle="bold"
android:textStyle="bold|italic"
----
Ref.
「字型入門」字型字體,傻傻分不清楚
http://www.advertisingfan.net/2011/05/fonts-vs-typeface.html

[Android] 按鈕置換文字顏色及字型 Typeface
http://style77125tech.pixnet.net/blog/post/17032697-%5Bandroid%5D-%E6%8C%89%E9%88%95%E7%BD%AE%E6%8F%9B%E6%96%87%E5%AD%97%E9%A1%8F%E8%89%B2%E5%8F%8A%E5%AD%97%E5%9E%8B--typeface





從 xml 設定 TextView 字體大小


<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/imageView1"
android:textSize = "44sp"
android:text="TextView" />

上述highline的地方,單位是sp 就可以設定文字大小



0 件のコメント: