重複の可能性:
実行時に TextView のスタイルを変更する方法
<ListView
android:id="@+id/listproducts"
android:layout_below="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:divider="#C8C8C8"
android:dividerHeight="1dip" >
</ListView>
これは私が使用しているリストのコードです。以下は、リストに入れたいテキストのコードです。
<TextView
android:id="@+id/productname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_marginLeft="10dip"
android:layout_marginTop="25dip"
android:layout_marginBottom="10dip"
android:selectAllOnFocus="true"
/>
「 android:selectAllOnFocus 」はテキストビューでは機能しないようですが、ボタンでは機能します。私は何をすべきか ?