如何在 Android 中禁用分段控制?

How to disable Segmented control in Android?

谁能告诉我如何在 android 中禁用分段控制。 我一直在使用 Foursquared 库。

下面给出 library 的 link。

你可以为此做一件事。

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

<SegmentedButton
    android:id="@+id/login_fragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clickable="false"
    />

<Layout
    android:id="@+id/transperent_fragment"
    android:name="com.test.transperentFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/body_texture"
    android:alpha="0.2"
    android:clickable="true"/>

</RelativeLayout>

希望这对你有帮助..:)