如何在android中动态地在ExpandableListview的末尾放置一个按钮

时间:2011-07-06 06:14:36

标签: android expandablelistview

在我的应用程序中,我有一个扩展ExpandableListActivity的活动,我想在ExpandableListview的末尾放一个按钮,这样如果我开头它应该在listview的末尾。

问题是在扩展Expandablelistview中的所有项目后,它采用全屏幕并且不显示按钮。 如何使用ExpandableListview滚动按钮? 我也试图给Scrollview,但它不起作用。 给我一个方法,我应该在xml文件中写什么正确的o / p。 谢谢

1 个答案:

答案 0 :(得分:-1)

创建一个footerview layout,其中包含您要设置为页脚的Button,然后尝试

View footerView = ((LayoutInflater)ActivityContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(R.layout.footer_layout, null, false);
ListView.addFooterView(footerView);

Footer_layout xml文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:paddingTop="7dip"
    android:paddingBottom="7dip"
    android:orientation="horizontal"
    android:gravity="center">
    <LinearLayout 
        android:id="@+id/footer_layout" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:gravity="center"
        android:layout_gravity="center">

    <Button          
        android:id="@+id/footer_1" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:layout_marginRight="5dip">
    </Button> 

</LinearLayout>
 </LinearLayout>