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"
- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
- ››android bitmap与base64字符串的互相转换
更多精彩
赞助商链接