次のようなレイアウト xml ファイルに TextView があります。
<TextView
android:id="@+id/viewId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/string_id" />
私の文字列は次のように指定されています:
<string name="string_id">text</string>
Javaコードなしで「テキスト」ではなく「テキスト」を表示させることはできますか?
(文字列自体も変更せずに)