我有我的佈局XML作爲Android的列表視圖中不可見
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="10dip"
android:paddingLeft="10dip"
android:paddingRight="10dip">
<!-- Editext for Search -->
<EditText android:id="@+id/inputSearch"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="Search.."
android:inputType="textVisiblePassword"/>
<ListView
android:id="@+id/table_list_listView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/customshape">
</ListView>
<TextView android:id="@android:id/empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/no_servers"/>
</LinearLayout>
但是,當活動啓動,我無法看到列表視圖。只顯示Edittext。
任何幫助appreaciated如何解決這個問題。
您是否通過適配器在代碼中的「ListView」中添加了任何數據?如果在ListView中沒有顯示的項目,它將不會顯示 – 2013-03-23 00:26:14
@AshishGupta這是一個有效的問題,但在這種情況下是一個有爭議的問題,因爲即使在這種情況下它仍不會顯示此「佈局」是數據 – codeMagic 2013-03-23 00:28:47