iT邦幫忙

2022 iThome 鐵人賽

DAY 28
0
Mobile Development

Android studio 30天新手筆記系列 第 28

Day28-Android新手筆記-多國語系設置

  • 分享至 

  • xImage
  •  

多國語系設置

當APP於多個國家都有使用者時,為方便使用者使用,我們須添加多國語系的設定。會依照使用者系統所設定的語言做變換,對APP提升使用者的閱讀便利性。

/images/emoticon/emoticon31.gif

開啟strings.xml,點選open editor按鈕

點擊地球按鈕加入語言

添加字串並寫入對應所選語言的字串

系統會自動建立對應的字串檔案,如上方範例,建立的檔案對照如下圖:

  • strings.xml

  • strings.xml(zh-rTW)

這邊要特別注意兩個檔案中的name要相同!!!

嘗試切換系統語言

結果如下:

  • 系統設定英文狀態下

  • 系統設定中文狀態下

/images/emoticon/emoticon41.gif

完整程式碼

  • strings.xml
<resources>
    <string name="app_name">IT_Demo_language</string>
    <string name="textValue">This is the example .</string>
</resources>
  • strings.xml(zh-rTW)
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">IT幫範例_語言</string>
    <string name="textValue">這是範例</string>
</resources>
  • activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/textValue"
        android:textSize="40dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

/images/emoticon/emoticon41.gif


上一篇
Day27-Android新手筆記-Glide基本介紹
下一篇
Day29-Android新手筆記-SeekBar音量控制
系列文
Android studio 30天新手筆記30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言