в моем ExpandableListView у меня есть несколько категорий с элементами.Каждый элемент имеет флажок в конце.Когда я нажимаю на этот флажок, статус должен измениться на отмеченный, а затем элемент должен перейти в другую (жестко закодированную) категорию в конце списка.Там флажок должен быть отмечен, как я это сделал в исходной категории.
Способ перемещения предмета, который я нашел на примерах.Но флажок предметов не установлен в новой категории.Вместо этого элемент в старой позиции перемещенного элемента будет проверен (без щелчка) в исходной категории.
Пример (o означает, что не отмечено; x означает, что проверено):
после запускаприложение:
- категория 1
item1 o
item2 o
item3 o - категория 2
item4 o
после того, как нажмите на чекбокс item1 в категории 1
- категория 1
item2 x
item3 o - категория 2
item4 o - в жестком кодекатегория
item1 o
Вот мой класс адаптера
public class MyCustomAdapter extends BaseExpandableListAdapter {
private LayoutInflater inflater;
private ArrayList<Parent> mParent;
private Context Kontext;
private int count = 0;
Children child;
private CheckBox childCheckBox;
public MyCustomAdapter(Context context, ArrayList<Parent> parent) {
mParent = parent;
inflater = LayoutInflater.from(context);
Kontext = context;
}
@Override
//counts the number of group/parent items so the list knows how many times calls getGroupView() method
public int getGroupCount() {
return mParent.size();
}
@Override
//counts the number of children items so the list knows how many times calls getChildView() method
public int getChildrenCount(int groupPosition) {
Log.e("EXPANDABLE LIST", "GROUP " + groupPosition + " " + mParent.get(groupPosition).getArrayChildren()
.size() + "");
return mParent.get(groupPosition).getArrayChildren().size();
}
@Override
//gets the title of each parent/group
public Object getGroup(int i) {
return mParent.get(i).getTitle();
}
@Override
//gets the name of each item
public Object getChild(int i, int i1) {
return mParent.get(i).getArrayChildren().get(i1);
}
@Override
public long getGroupId(int i) {
return i;
}
@Override
public long getChildId(int i, int i1) {
return i1;
}
@Override
public boolean hasStableIds() {
return true;
}
@Override
public int getChildTypeCount() {
return 6;
}
@Override
//in this method you must set the text to see the parent/group on the list
public View getGroupView(int groupPosition, boolean b, View convertView, ViewGroup viewGroup) {
ViewHolder holder = new ViewHolder();
holder.groupPosition = groupPosition;
if (convertView == null) {
convertView = inflater.inflate(R.layout.list_item_parent, viewGroup, false);
holder.groupTitle = (TextView) convertView.findViewById(R.id.list_item_text_view);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
holder.groupTitle.setText(getGroup(groupPosition).toString());
//return the entire view
return convertView;
}
@Override
//in this method you must set the text to see the children on the list
public View getChildView(final int groupPosition, final int childPosition, boolean isLastChild, View convertView, ViewGroup viewGroup) {
final ViewHolderChild holder;
child = mParent.get(groupPosition).getArrayChildren().get
(childPosition);
if (convertView == null) {
holder = new ViewHolderChild();
convertView = inflater.inflate(R.layout.child_list_layout, viewGroup, false);
holder.childTitle = (TextView) convertView.findViewById(R.id.list_item_text_child);
holder.childCheckBox = (CheckBox) convertView.findViewById((R.id.cbListItemChild));
convertView.setTag(holder);
} else {
holder = (ViewHolderChild) convertView.getTag();
}
holder.childTitle.setText(mParent.get(groupPosition).getArrayChildren().get(childPosition).getArtikelName());
convertView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(Kontext.getApplicationContext(), "gekauft : " +mParent.get(groupPosition).getArrayChildren().get
(childPosition).gekauft
+ "", Toast.LENGTH_SHORT).show();
}
});
holder.childCheckBox.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(Kontext.getApplicationContext(), "You have selected item : " +mParent.get(groupPosition).getArrayChildren().get
(childPosition).name
+ "", Toast.LENGTH_SHORT).show();
addChildToGroup(mParent.get(groupPosition).getArrayChildren().get
(childPosition), mParent.size() - 1, "Parent 25 (Hardcoded)");
removeChildFromGroup(groupPosition, childPosition);
notifyDataSetChanged();
}
});
//return the entire view
return convertView;
}
@Override
public boolean isChildSelectable(int i, int i1) {
return true;
}
public void removeGroup(int groupPosition) {
mParent.remove(groupPosition);
Log.e("removeGroup", "group size " + mParent.size());
notifyDataSetChanged();
}
/**
* Removes child at childPosition from group at groupPosition. If it is the last child in group
* the group will also be deleted.
*
* @param groupPosition Position of the group in which the child exists
* @param childPosition Position of the child in the group
*/
public void removeChildFromGroup(int groupPosition, int childPosition) {
Parent parent = mParent.get(groupPosition);
parent.getArrayChildren().remove(childPosition);
if (parent.getArrayChildren().isEmpty()) {
removeGroup(groupPosition);
} else {
notifyDataSetChanged();
}
}
public void addChildToGroup(Children childName, int groupPosition, String sectionTitle) {
Parent parent = mParent.get(groupPosition);
List<Children> arrayChildren = parent.getArrayChildren();
if (!parent.getTitle().equals(sectionTitle)) {
parent = new Parent();
arrayChildren = new ArrayList<>();
parent.setTitle(sectionTitle);
mParent.add(parent);
}
arrayChildren.add(childName);
parent.setArrayChildren(arrayChildren);
notifyDataSetChanged();
}
protected class ViewHolder {
protected int groupPosition;
protected TextView groupTitle;
protected TextView childTitle;
}
private class ViewHolderChild {
TextView childTitle;
CheckBox childCheckBox;
View viewDivider;
}}
Кто-нибудь может помочь решить эту проблему?Спасибо всем, кто нашел время.