我有我的布局 xml 作为
<?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。
任何帮助都会得到帮助我该如何解决这个问题。