0

これが私のコードです。文字列内のテキストの書式を部分的に変更したい。

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


    String stuff[] = {

"this has to be  the bold part   this has to be normal part",
"this part of text has to be green      this part of text has to be blue",
"this is number 3 bold",

}

4

2 に答える 2

2

HTML フォーマットを使用できます。

textView.setText(Html.fromHtml("<b>test</b> test"));

于 2013-01-14T11:26:21.600 に答える