資料夾呈現方式先改成project,之後建立特定資料夾(注意檔案名稱),並在各資料夾中放他們的string.xml檔




原本的:

<resources>
    <string name="app_name">I18N</string>

    <string name="hello_world">Hello world!</string>
    <string name="menu_about">About</string>
    <string name="menu_exit">Exit</string>
    <string name="about_title">About Android</string>
    <string name="about_msg">Welcome to Android World!</string>
    <string name="confirm">OK</string>

</resources>


繁中:
<?xml version="1.0" encoding="utf-8"?>
<resources>
   <string name="app_name">I18N</string>
   <string name="hello_world">Hello World!</string>
   <string name="menu_about">關於</string>
   <string name="menu_exit">離開</string>
   <string name="about_title">關於 Android</string>
   <string name="about_msg">歡迎來到Android的世界!</string>
   <string name="confirm">確定</string>
</resources>
arrow
arrow
    全站熱搜

    乙方 發表在 痞客邦 留言(0) 人氣()