我正在尝试创建一个ListView
包含 aCheckBox
和一个ImageButton
. 到目前为止,我有以下工作,如下所示:
这是每个 ListView 项的布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/widget32"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageButton
android:id="@+id/imgTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/datetime"
android:layout_alignBottom="@+id/rbOutput"
android:layout_alignParentRight="true" />
<CheckBox
android:id="@+id/rbOutput"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="[User Output]"
android:layout_centerVertical="true"
android:layout_alignParentLeft="true" />
</RelativeLayout>
问题是图像的顶部和底部被剪掉了。如何checkbox
在每个项目中垂直居中显示完整图像及其左侧ListView
?
作为参考,这是完整的未剪辑图像: