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 内にテーブルを追加して、各行のスタイルを変更することは可能ですか?
これどうやってするの?
ありがとうございました!