这是一张图片:
我正在尝试将ImageButton放在红色框中。
我尝试了layout_toRightof,但它将按钮放在倒带按钮的旁边。 我可以指定一定长度的保证金,但我希望它是相对的。
感谢您的帮助!!
<ImageButton
android:id="@+id/rw"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@drawable/rewind">
</ImageButton>
答案 0 :(得分:2)
可能
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:src="@drawable/icon"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true" />
</RelativeLayout>
答案 1 :(得分:1)
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:src="@drawable/icon"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true" />
<ImageButton
android:id="@+id/rw"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:background="@drawable/rewind">
</ImageButton>
</RelativeLayout>
答案 2 :(得分:0)
我猜您需要将以下行添加到ImageButton
的xml代码中android:layout_alignParentRight="true"
我希望,那就是你想要的,不是吗?