テキストビューで行ったように、2 つのスイッチを中央に配置したいのですが、可能なすべてのオプションを試しましたが成功しませんでした。
これはコードの簡単なバージョンです:
<LinearLayout [...]
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="NOTIFICATIONS" />
<TextView [...] />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Switch
android:id="@+id/swnotif"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="1" />
<Switch [...] />
</LinearLayout>
</LinearLayout>