put extra を介して文字列を送信すると、下線付きの単語に下線が引かれません
<string name="s_hello_txt">\n{ <u>hello all</u> }\n</string>
MainActivity ボタン コード
public void c_hello(View v){
Intent hello= new Intent(MainActivity.this,
MainTextActivity.class);
intent_collection_e3tiraf.putExtra("key",getResources().getString(R.string.s_hello_txt));
startActivity(hello);
finish();
}
MainActivityText onCreate コード
textview = (TextView) findViewById(R.id.id_text_txt);
Intent n = getIntent();
String mrng = n.getStringExtra("key");
textview.setText(mrng);
直接文字列でテキストを入力すると、下線が引かれます
たとえば、MainActivityText(activity_maintext.xml) のレイアウトを入れた場合
<TextView
android:id="@+id/id_dailyprayers_txt"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/s_hello_txt"
android:textSize="30sp" />
MainActivityText の textview 下線付きのテキスト (hello all) を表示します
何か助けて!!!!