左側に画像、中央にスイッチテキスト、右隅にスイッチボタンが必要です。これが私のコードです
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_mobile_data_usage"
android:layout_marginStart="10dp"
/>
<android.support.v7.widget.SwitchCompat
android:id="@+id/switch_compat"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="false"
android:text="Mobile Data"
android:textAlignment="center"
android:textOff=""
android:textOn=""
app:showText="true" />
</LinearLayout>