0

当列表为空时,我使用扩展 ListActivity 显示空消息。下面是我的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="fill_parent" 
    android:orientation="vertical"    >

    <ListView android:id="@+id/android:list"
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:layout_weight="1.0">
    </ListView>

    <TextView android:id="@android:id/empty"
               android:layout_width="match_parent"
               android:layout_height="match_parent"
               android:text="No Items! Please Add!"/> 

    <Button
        android:id="@+id/button1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"        
        android:text="Add Item" />

</LinearLayout>

我的问题是按钮只能在列表中有项目时出现,但在列表为空时不能出现。当列表为空时,按钮如何出现?

4

5 回答 5

1

起初检查getCount()。如果getCount()返回 0,则visibilityof 按钮应该是可见的,'invisible'否则'gone'

于 2013-05-22T09:29:01.757 回答
0

只需使用您可以设置android tag android:visible buttons的参考 id 中的代码xml

button.setVisibility(View.Visible or View.inVisible) based on your requirement.
于 2013-05-22T08:42:32.310 回答
0

您应该在列表视图的布局内创建一个页脚视图布局。

View footer = ((LayoutInflater) ActivityContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(R.layout.footer, null, false);

ListView.addFooterView(footer);

还要检查这个链接

于 2013-05-22T08:43:19.213 回答
0

您可以通过执行检查 ListView 中是否没有项目

listview.getAdapter().isEmpty

如果是,请将按钮的可见性设置为gone。否则,visible

于 2013-05-22T08:55:59.720 回答
0

好吧,我不是要添加页脚,而只需要添加一个按钮。我如下更改xml然后问题解决。谢谢大家。^^

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
       >

    <ListView android:id="@+id/android:list"
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:layout_weight="1.0"
          android:layout_above="@+id/bAdd">
    </ListView>


    <TextView android:id="@android:id/empty"
               android:layout_width="match_parent"
               android:layout_height="match_parent"
               android:layout_above="@+id/bAdd"
               android:text="No Items! Please Add!"/> 

     <Button
        android:id="@+id/bAdd"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"        
        android:text="Add Item" />



</RelativeLayout>
于 2013-05-23T10:10:17.733 回答