我正在尝试创建以下布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</TextView>
<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</TextView>
<SeekBar
android:id="@+id/seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/textView3"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</TextView>
</LinearLayout>
我想将父布局的 80% 给 textView1 和 textView2,尽可能将 SeekBar 包裹起来,其余的空闲空间给 textView3。
我试图:
- 使用 layout_weight 属性(分别为 - 4、4、1、1),但最后一个视图与 SeekBar 重叠
- 仅对 textView1 和 textView2 使用 layout-weight,将 SeekBar 的高度设置为“wrap_content”并为最后一个视图设置“match_parent”
现在我没有更多的想法了。你有过这样的问题吗?