【AndroidStudio】ボタンのキャプション設定方法その1
ボタンを配置するとキャプションの初期値として「Button」がセットされるが、
「ハードコーディングはよくないから、@stringリソース=strings.xmlを使いなさい(意訳)」と促される。
activity_main.xmlコード上で該当箇所にカーソルをあてると黄色い が表示される。
その黄色い をクリックして、「文字列リソースの抽出」をクリックする。
すると「リソースの抽出」ダイアログが出るので、任意の値を記述する。
- リソース名:strings.xmlの中で、画面に配置したコントロールを識別するための文字列。サンプルではidと合わせている。
- リソース値:キャプションとして表示する文字列。
- ソース・セット:「main」「debug」「releace」から選択する。とりあえず「main」のまま。
- ファイル名:「colors.xml」「strings.xml」「styles.xml」から選択する。キャプションは文字列なので「strings.xml」のまま。
- ディレクトリーにリソースを作成:とりあえずそのまま。
「OK」をクリックするとactivity_main.xmlの 箇所が "Button"
から "@string/myButton"
に変更される。
<Button
android:id="@+id/myButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onClickMyButton"
android:text="@string/myButton" 👈
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
strings.xmlは app > res > values 配下にある。
ここまでで設定した内容が 箇所に記述されている。
<resources>
<string name="app_name">sandbox</string>
<string name="myButton">テスト</string> 👈
</resources>
以上
Author And Source
この問題について(【AndroidStudio】ボタンのキャプション設定方法その1), 我々は、より多くの情報をここで見つけました https://qiita.com/HogeFugaPiyochan/items/8c3bf42daf6cdd37922f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .