android 自定义字体
2010-11-05 00:54:40 来源:WEB开发网在android系统中,自带的只有三种字体---"sans","serif"和"monospace",你只要在xml文件中的
Xml代码
1. android:typeface
android:typeface
属性使用它们:
Xml代码
1. < TableLayout
2. xmlns:android="http://schemas.android.com/apk/res/android"
3. android:layout_width="fill_parent"
4. android:layout_height="fill_parent"
5. android:stretchColumns="1">
6. < TableRow>
7. < TextView
8. android:text="sans:"
9. android:layout_marginRight="4px"
10. android:textSize="20sp"
11. />
12. < TextView
13. android:id="@+id/sans"
14. android:text="Hello, world!"
15. android:typeface="sans"
16. android:textSize="20sp"
17. />
18. < /TableRow>
19. < TableRow>
20. < TextView
21. android:text="serif:"
22. android:layout_marginRight="4px"
23. android:textSize="20sp"
24. />
25. < TextView
26. android:id="@+id/serif"
27. android:text="Hello, world!"
28. android:typeface="serif"
29. android:textSize="20sp"
30. />
31. < /TableRow>
32. < TableRow>
33. < TextView
34. android:text="monospace:"
35. android:layout_marginRight="4px"
36. android:textSize="20sp"
37. />
38. < TextView
39. android:id="@+id/monospace"
40. android:text="Hello, world!"
41. android:typeface="monospace"
42. android:textSize="20sp"
43. />
44. < /TableRow>
45. < TableRow>
46. < TextView
47. android:text="Custom:"
48. android:layout_marginRight="4px"
更多精彩
赞助商链接