Android ListView消失(SDK 2.3.3)

时间:2011-11-26 04:08:00

标签: android listview

我正在尝试为我的Android设备开发应用程序,而我似乎遇到了麻烦。我正在尝试在TextView的顶部添加Activity(或其他组件),并在其下方添加Listview。我遇到的问题是,如果我在布局中不仅仅有ListView,它就不会渲染。因此,由于我正在尝试TextViewListView,因此只会显示TextView

layout.xml

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

    <TextView
        android:id="@+id/text_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/test_string"/>

    <ListView
        android:id="@+id/list_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:entries="@array/list_contents" >
    </ListView>
</LinearLayout>

我还尝试将layout_height设置为_wrap\_content_,但它没有改变任何内容。

1 个答案:

答案 0 :(得分:2)

将以下代码添加到linearlayout

android:orientation="vertical"