0

我正在尝试创建以下布局:

<?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”

现在我没有更多的想法了。你有过这样的问题吗?

4

1 回答 1

0

很好地创建这个布局,我会尝试:

<TextView
    android:id="@+id/textView1"
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:layout_weight="4" >
</TextView>

<TextView
    android:id="@+id/textView2"
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:layout_weight="4" >
</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="0dip"
    android:layout_weight="1">
</TextView>

改变重量调整尺寸。让搜索栏包裹内容,赋予其他视图权重。

告诉我这是否有帮助。

于 2013-03-17T14:45:38.050 回答