如何正确显示SeekBar? (layout_weight)

时间:2013-03-16 16:22:29

标签: android-layout

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

<?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布局权重,将SeekBar的高度设置为“wrap_content”并为最后一个视图设置“match_parent”

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

1 个答案:

答案 0 :(得分: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>

更改权重tu调整大小。 让搜索栏包含内容,给予其他观点权重。

告诉我这是否有帮助。