-1

textView を複数の行に分割し、各行にスタイルを設定することは可能ですか?

たとえば、テキストビューに入れたい:

" Row1 //色は黒と太字

Row2 //異なるフォントと色"

これは私のレイアウトxmlです

   <?xml version="1.0" encoding="utf-8"?>
  <LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#FFFFFF">
  <TextView
    android:id="@+id/name"
    android:text="Name"
    android:paddingLeft="10dip"
    android:layout_weight="0.5"
    android:layout_gravity="center"
    android:layout_width="wrap_content"
      android:layout_height="wrap_content"
    android:textColor="#000000" />
  </LinearLayout>

私はテキストビューのテキストを次のように設定しています:

      textView.setText("Row1 /n Row2");

textView 内にテーブルを追加して、各行のスタイルを変更することは可能ですか?

これどうやってするの?

ありがとうございました!

4

1 に答える 1

1

Html.fromhtml()テキストにさまざまな色やフォントを追加したり、TextView に別の行を追加したりするには、「\n」を使用するだけです。

例:textview.setText("text1"+"\n"+"text2")

Html.fromhtml() の例:text.setText(Html.fromHtml("<font color='#ff0000'>text</font>"));

于 2012-09-02T12:43:02.330 に答える