に配置された多くの Switch 要素がありますListView
。現在、それらは次のように表示されています。
しかし、私はそれらを垂直方向に中央に配置する必要があります。
各リスト項目の定義として、次の AXML を使用しています。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/widget32"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<Switch
android:id="@+id/switchOutput"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:text="[Output Name]"
android:gravity="center_vertical" />
<ImageButton
android:id="@+id/imgTime"
android:background="@null"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/datetime"
android:scaleType="fitCenter"
android:layout_alignParentRight="true" />
</RelativeLayout>
android:gravity="center_vertical"
それらを正しく表示するには十分だと思いましたが、機能していないようです。各リスト項目でスイッチを垂直方向の中央に配置するには何が必要ですか?