1
私はシンプルなアプリを作ってみると、私はのstrings.xml内の2つの文字列を使用:レイアウトで2つの文字列を使用するには?
<string name="question">is the capital of:</string>
<string name="riga">Riga</string>
をそして、私は1つのテキストビューに追加します。
出力は(リガは:の首都です)。
どうすればいいですか?
これが私のレイアウトです:
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/riga" + "@string/question"
/>
いいえ、そんなことはできません.2つの文字列と 'setText()'をプログラムで追加することはできます –