2013-03-26 49 views
0

這就是我所擁有的,我可擴展的listview。每個組項目都是一個複選框,旁邊有Textview。ExpandableListView - 複選框作爲擴展與否的指標

我想要複選框切換選中/取消選中,如果該組是擴大或不擴大。

而且正相反,所以如果複選框被選中,名單應當擴大等

任何想法?

這是我group_layout.xml

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

    <CheckBox 
     android:id="@+id/check_channel" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_margin="10dp" 
     android:focusable="false" 
     android:layout_gravity="left" 
     android:checked="false" /> 

    <TextView 
     android:textSize="20sp" 
     android:textIsSelectable="false" 
     android:id="@+id/textView" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_marginTop="20dp" 
     android:layout_marginLeft="55dp"/> 

</RelativeLayout> 

它看起來很漂亮,只需要它來檢查和取消。

回答

2

啊沒關係,這是我做到了

public View getGroupView(int groupPosition, boolean isExpanded, View convertView,ViewGroup parent) { 
    View v; 
    if (convertView == null) { 
     v = newGroupView(isExpanded, parent); 
    } else { 
     v = convertView; 
    } 

    if (isExpanded) { 
     ((CheckBox) v.findViewById(R.id.check_channel)).setChecked(true); 
    } else { 
     ((CheckBox) v.findViewById(R.id.check_channel)).setChecked(false); 
    } 
    bindGroupView(groupPosition, isExpanded, v, parent); 
    return v; 
} 
相關問題