我只是在浪费时间,因为我不知道如何正确地做到这一点。基本上,我想要一个自定义输入视图,用户可以在其中用他/她的手指绘制他想要的任何东西,并且在它下面,我想放置 2 个(或更多)按钮,我不想在上面重叠自定义视图的顶部。因为我试图避免硬编码宽度和高度,有没有办法指定按钮应该包装到它们的内容并且自定义视图应该占据剩余的高度?由于我希望所有按钮都具有相同的高度,我想以其中一个按钮的高度作为参考应该以某种方式工作......
这是我目前的布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<com.example.myapp.DrawView
android:id="@+id/drawView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" />
<Button
android:id="@+id/buttonSave"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:text="@string/save" />
<Button
android:id="@+id/buttonQuery"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="@string/query" />
</RelativeLayout>
实际上是否有可能轻松实现我想要的,而不必以讨厌的方式破解它?