TextViewに改行を追加しようとしています。
提案された\ nを試しましたが、何も起こりません。これが私のテキストの設定方法です。
TextView txtSubTitle = (TextView)findViewById(r.id.txtSubTitle);
txtSubTitle.setText(Html.fromHtml(getResources().getString(R.string.sample_string)));
これは私の文字列です: <string name="sample_string">some test line 1 \n some test line 2</string>
次のように表示されます。
some test line 1
some test line 2
しかし、次のように表示されますsome test line 1 some test line 2
。
何か不足していますか?
\n
確かに最良の方法です。github.com/paour/StringResourceTest
Html.fromHtml()
関数を削除して、を使用するだけtxtSubTitle.setText(getResources().getString(R.string.sample_string))
です。