我需要一个可扩展列表的父视图中的按钮

时间:2011-12-02 11:38:31

标签: android expandablelistview

我正在尝试向expandablelist的父视图添加一个按钮。这是我对父视图的布局。

<?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="wrap_content"
    android:orientation="horizontal" >

    <ImageView
        android:id="@+id/explist_indicator"
        android:layout_width="25dp"
        android:layout_height="match_parent"
        android:layout_weight=".25"
        android:src="@drawable/expander_group" />

    <TextView
        android:id="@+id/contacts"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="left"
        android:layout_weight="1"
        android:paddingLeft="20dp"
        android:text="@string/contacts"
        android:textSize="28dp" >
    </TextView>

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight=".25"
        android:background="@drawable/plus"
        android:text="Button" />

</LinearLayout>

我像普通的那样将按钮添加到java类,但是当我尝试添加一个监听器时,会得到一个空指针异常。我添加此按钮以选择/取消选择特定父级的所有子级。任何帮助都会很棒。

1 个答案:

答案 0 :(得分:1)

您可以添加自定义图像作为组下拉指示器,只需创建下拉列表的图像,然后通过它的组指示器属性将其连接到可扩展列表视图。组指示符是一个可绘制的xml文件,用于定义state_expanded和drawable状态使用的图像。您仍然需要在代码中为可扩展列表视图在运行时设置组指示符。