如何在 xml 中使 android 中的 Switch 不可点击

how to make a Switch unclickable in android in xml

我有这个 xml 布局,我想让开关元素不可点击(禁用),这样当用户试图按下它时,它就不起作用。我该怎么做?

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="2">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@string/english"
        android:textSize="18sp" />

    <Switch
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textSize="18sp" />

</LinearLayout>

android:enabled="false" 添加到您的 Switch 元素。

<Switch
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:textSize="18sp"
    **android:enabled="false"** />