xml に次の ToggleButton があります。
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="46dp"
android:gravity="center" >
<ToggleButton
android:id="@+id/toggleButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:text="ToggleButton"
android:textOff="Inactive"
android:textOn="Active" />
<TextView
android:id="@+id/label_note"
android:layout_width="wrap_content"
android:layout_height="30dp"
android:layout_centerVertical="true"
android:layout_marginRight="38dp"
android:layout_marginLeft="2dip"
android:layout_toRightOf="@+id/check_note"
android:text="@+id/label"
android:textSize="25px" />
...
</RelativeLayout>
リストビューを拡張する私のクラスでは、いくつかの基準に基づいてアクティブ/非アクティブのトグルボタンをプログラムで設定したいと思います。ユーザーがトグルボタンをクリックしてアクティブまたは非アクティブに設定できるようにしないことを指定したいと思います。どうやってするか?助けが要る。感謝!