Android應用開發之國際化

佈局 main.xml

<TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />

    <ImageButton 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/exit"/>

字符串國際化


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

<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" />


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章