当我通过 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)
任何帮助!!!!