3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AndroidStudioでstrings.xmlを開かずにstringのresourcesを定義する

Posted at

AndroidStudioでstringを定義するとき、これまではstrings.xmlを開いて定義していたのですが、Extract string resourceという機能を使うことで、layoutファイルの中だけでstringリソースを定義できるんですね。

やり方は簡単で、以下の手順でできます。手順にするとステップ数がありますが、実際は速攻でできます。gifもご覧ください。

  1. レイアウトファイルの android:text="hogehoge"の箇所にカーソルを当てる
  2. 表示されたダイアログのExtract string resourceを選択する
  3. Resource Nameの箇所にはstringのリソース名(例:hoge_label)を、Resource valueのところにはstringの値((例:hogehoge))を入れる
  4. 対象stringファイルのディレクトリなどを選択
  5. OKを選択
  6. レイアウトファイルでandroid:text="hogehoge"android:text="@string/hoge_label"に変換され、strings.xmlに定義が追加される
    extract_string.gif

手順1については、他にも以下の方法もあります。

  • カーソル当てた時に出てくるバルブアイコンから選択
  • Option+Enter (Windowsの場合Alt+Enter)の選択肢から選択

多言語対応をしている場合

stringファイルが一つだけならこれで完結なのですが、value-ja,value-enなど多言語対応でstringsファイルが複数ある場合には、ちょっと手間が増えます。

  • 先ほどの手順4で、複数のディレクトリにあるstringファイルを複数選択できるので、一旦全て同じ文字列で全てのstringsファイルにリソース追加
  • レイアウトファイルのandroid:text="@string/hoge_label"をcommand押下しながらクリックし、編集したいstringsファイルにジャンプして編集

若干手間は増えますが、stringsファイルを自分で探す手間は省けるのではないでしょうか。

以上、ちょっとしたTIPSでした。

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?