使用ArrayAdapter和其他小部件进行布局

时间:2013-03-05 19:53:20

标签: android android-linearlayout android-arrayadapter

我编写简单的xml布局代码如下:

<LinearLayout 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"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="ARRAYADAPTER" />

<ListView
    android:id="@+listview/lw"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
</ListView>

<Button 
    android:id="@+button/b1"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:text="NEXT"
    android:gravity="center"/>

</LinearLayout>

并在列表视图中设置一个数组适配器。当我启动这个应用程序时,buttod不会出现。 我想要做的是将布局分为三个部分: -textview在上面 - 适配器在中间(滚动) - 按钮(或多个)到底部。 我该怎么办?

2 个答案:

答案 0 :(得分:2)

我认为由于android:layout_height="match_parent",您的按钮占用了所有空间,请尝试android:layout_height="wrap_content"

答案 1 :(得分:1)

将ListView声明更改为:

<ListView
    android:id="@+listview/lw"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    />

并将按钮高度设置为wrap_content

这将告诉ListView占用TextView和Button没有占用的剩余空间。