ImageView
我想在使用我的xml
文件之上有一个按钮。当我运行此代码时,该按钮出现在屏幕左侧的其他按钮之上。
有没有人知道如何在屏幕顶部ImageView
但在屏幕底部有一个按钮。
到目前为止,我有以下内容:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
......
<ImageView
android:id="@+id/filter_image_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_toRightOf="@id/filter_linear_layout" />
//this is the button I want to have on top of the ImageView
<Button
android:id="@+id/display_RGB"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/button_blue_red_transluscent"
android:text="@string/display_RGB"
android:textColor="@android:color/white" />
</RelativeLayout>
只要它在屏幕底部但在中心的某个地方,就不会太挑剔。