文章目錄
相關內容:android:單位dip,px,pt,sp
android:Style and Theme
Android :landscape||portrait 切換
字串
values-zh //中文
- <string name="hello">你好!</string>
- <string name="app_name">國際化</string>
values-en //英文
- <string name="hello">Hello World, I18nActivity!</string>
- <string name="app_name">I18n</string>
values-en-rUS //英文,美國
- <string name="hello">Hello World, I18nActivity!,US</string>
- <string name="app_name">I18n</string>
圖片
注意檔案名稱得一樣
螢幕適配
layout-320x240 (大的放在前面)
亦可以layout-land. layout-port 定義橫豎屏不同的介面
然後可在不同解析度的layout中配置不同的介面
e.g.
Layout-320x240
- <TextView
- Android:layout_width="fill_parent"
- Android:layout_height="wrap_content"
- Android:text="320x240" />
Layout-480x320
- <TextView
- Android:layout_width="fill_parent"
- Android:layout_height="wrap_content"
- Android:text="480x320" />
參考:http://www.linuxidc.com/Linux/2012-03/55562.htm
http://blog.csdn.net/me15933550973/article/details/7173698