0
我正在嘗試爲我的Android設備開發應用程序,而且我似乎遇到了麻煩。我試圖在Activity
的頂部有TextView
(或另一個組件),並在其下方有Listview
。我遇到的問題是,如果我在佈局中使用的不僅僅是ListView
,它不會呈現。因此,由於我試圖擁有TextView
和ListView
,因此只顯示TextView
。Android ListView消失(SDK 2.3.3)
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_
,但它並沒有改變任何東西。
我添加它,現在正在顯示ListView中;但它沒有顯示所有的項目。只有前7個(總共18個)。 – Zymus
您可以使用滾動看到其他項目嗎? –
我可以在Eclipse中的仿真器上看到其他項目,但不能看到設備本身。我也無法在設備上滾動。我試過把ListView放在ScrollView中,但是仍然無法工作。 – Zymus