LinearLayout中未显示按钮

时间:2015-10-10 07:42:23

标签: android android-layout

我希望它看起来如此(这是图形布局编辑器中的截图):

enter image description here

所以我创建了布局:

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

    <LinearLayout
        android:id="@+id/controls"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/clearButton"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:text="@string/clearButtonText"
            android:layout_weight="1"
             />

        <EditText
            android:id="@+id/searchText"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_weight="5"
            android:hint="@string/defaultSearchText"
            >

            <requestFocus/>
        </EditText>

        <Button
            android:id="@+id/addButton"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:text="@string/addButtonText"
            android:layout_weight="1" 
            />
    </LinearLayout>

    <ListView
        android:id="@+id/list_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1" />

</LinearLayout>

但是当我在模拟器上运行我的应用程序时,我看到了:

enter image description here

当我点击放大镜时,仍然没有按钮的迹象。

enter image description here

1 个答案:

答案 0 :(得分:1)

我认为你应该使用权重来表示水平布局元素的宽度。这也意味着具有权重的元素的宽度应为0dp

<LinearLayout
    android:id="@+id/controls"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/clearButton"
        android:layout_width="0dp"
        android:layout_weight="0.2"
        android:layout_height="match_parent"
        android:text="@string/clearButtonText"
         />

    <EditText
        android:id="@+id/searchText"
        android:layout_width="0dp"
        android:layout_weight="0.6"
        android:layout_height="match_parent"
        android:hint="@string/defaultSearchText"
        >

        <requestFocus/>
    </EditText>

    <Button
        android:id="@+id/addButton"
        android:layout_width="0dp"
        android:layout_weight="0.3"
        android:layout_height="match_parent"
        android:text="@string/addButtonText"
        />
</LinearLayout>