2024-05-12 10:52:02 +02:00
|
|
|
package android.widget;
|
|
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
|
import android.util.AttributeSet;
|
2024-06-13 21:00:06 +02:00
|
|
|
import android.view.View;
|
2024-05-12 10:52:02 +02:00
|
|
|
|
|
|
|
|
public class ExpandableListView extends ListView {
|
|
|
|
|
|
|
|
|
|
public ExpandableListView(Context context) {
|
|
|
|
|
super(context);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ExpandableListView(Context context, AttributeSet attributeSet) {
|
|
|
|
|
super(context, attributeSet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static int getPackedPositionGroup(long packedPosition) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2024-06-13 21:00:06 +02:00
|
|
|
|
|
|
|
|
public void setHeaderDividersEnabled(boolean enabled) {}
|
|
|
|
|
|
|
|
|
|
public static interface OnChildClickListener {
|
|
|
|
|
abstract boolean onChildClick(ExpandableListView parent, View v, int groupPosition, int childPosition, long id);
|
|
|
|
|
}
|
2024-05-12 10:52:02 +02:00
|
|
|
}
|