Проблема с расширением многоуровневого ExpandableListView

У меня многоуровневый (3 уровня, Root -> Родитель -> Child) ExpandableListView, содержащий дочерние элементы, которые также являются ExpandableListViews. Я'у меня нет проблем заполняя их; однако мне нужно развернуть определенный элемент на уровне «Родитель» при первом отображении действия (onCreate).

Я успешно раскрыл связанный элемент Root родительского элемента, но могуКажется, он не расширяет родительский элемент. Данные слушатели вызываются, и все же результат неЭто отражено в моем многоуровневом списке.

Деятельность, в которой я называю расширение:

public class Activity {
    private int groupToExpand = 4, childToExpand = 3;
    protected void onCreate(Bundle savedInstance) {
        final ExpandableListView elv = (ExpandableListView) findViewById(R.id.elv);
        if (arrayList!= null && !arrayList.isEmpty()) {
            elv.setAdapter(new RootAdapter(this, arrayList);
            // this selects the correct group, but doesn't expand the child.
            elv.setSelectedChild(groupToExpand, childToExpand, true); 
            elv.expandGroup(groupToExpand); // this works.
        }
    }
}

Мой Root адаптер:

public class RootAdapter extends BaseExpandableListAdapter {

private List arrayList;
private Context context;
private LayoutInflater inflater;

public RootAdapter(Context context, List arrayList) {
    this.context = context;
    this.arrayList = arrayList;
    this.inflater = LayoutInflater.from(context);
}

@Override
public Object getChild(int groupPosition, int childPosition) {
    final Objects parent = (Objects) getGroup(groupPosition);
    return parent.arrayList.get(childPosition);
}

@Override
public long getChildId(int groupPosition, int childPosition) {
    return childPosition;
}

@Override
public View getChildView(int groupPosition, int childPosition,
        boolean isLastChild, View convertView, ViewGroup parent) {
    final Objects o = (Objects) getChild(groupPosition, childPosition);

    CustomExpandableListView elv = (CustomExpandableListView) convertView;
    ChildViewHolder holder;

    if (elv == null) {
        holder = new ChildViewHolder();

        elv = new CustomExpandableListView(context);
        elv.setGroupIndicator(null);
        elv.setDivider(null);
        elv.setCacheColorHint(Color.parseColor("#00000000"));
        elv.setChildDivider(null);
        elv.setChildIndicator(null);
        elv.setScrollingCacheEnabled(false);
        elv.setAnimationCacheEnabled(false);

        holder.cListView = elv;
        elv.setTag(holder);
    } else {
        holder = (ChildViewHolder) elv.getTag();
    }

    final ParentAdapter adapter = new ParentAdapter(context, o);
    holder.cListView.setAdapter(adapter);

    return elv;
}

private static class ChildViewHolder {
    CustomExpandableListView cListView;
}

@Override
public int getChildrenCount(int groupPosition) {
    final Objects parent = (Objects) getGroup(groupPosition);
    return parent.arrayList.size();
}

@Override
public Object getGroup(int groupPosition) {
    return arrayList.get(groupPosition);
}

@Override
public int getGroupCount() {
    return arrayList.size();
}

@Override
public long getGroupId(int groupPosition) {
    return groupPosition;
}

@Override
public View getGroupView(int groupPosition, boolean isExpanded,
        View convertView, ViewGroup parent) {
    View layout = convertView;
    GroupViewHolder holder;
    final Objects o = (Objects) getGroup(groupPosition);

    if (layout == null) {
        layout = inflater.inflate(R.layout.item_to_inflate, parent, false);
        holder = new GroupViewHolder();

        holder.title = (TextView) layout.findViewById(R.id.title);
        holder.image = (ImageView) layout.findViewById(R.id.image);
        layout.setTag(holder);
    } else {
        holder = (GroupViewHolder) layout.getTag();
    }

    holder.title.setText(o.title.trim());

    return layout;
}

@Override
public boolean hasStableIds() {
    return true;
}

@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
    return true;
}

private static class GroupViewHolder {
    TextView title;
    ImageView image;
}

public class CustomExpandableListView extends ExpandableListView {

    public CustomExpandableListView(Context context) {
        super(context);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        heightMeasureSpec = MeasureSpec.makeMeasureSpec(2000, MeasureSpec.AT_MOST);
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    }

}

}

Наконец мой ParentAdapter:

public class ParentAdapter extends BaseExpandableListAdapter {

private Objects child;
private LayoutInflater inflater;

public ParentAdapter(Context context, Objects child) {
    this.child = child;
    this.inflater = LayoutInflater.from(context);
}

@Override
public Object getChild(int groupPosition, int childPosition) {
    return child.arrayList.get(childPosition);
}

@Override
public long getChildId(int groupPosition, int childPosition) {
    return childPosition;
}

@Override
public View getChildView(int groupPosition, int childPosition,
        boolean isLastChild, View convertView, ViewGroup parent) {
    View layout = convertView;
    final Objects o = (Objects) getChild(0, childPosition);

    ChildViewHolder holder;

    if (layout == null) {
        layout = inflater.inflate(R.layout.item_to_inflate, parent, false);

        holder = new ChildViewHolder();
        holder.title = (TextView) layout.findViewById(R.id.title);
        layout.setTag(holder);
    } else {
        holder = (ChildViewHolder) layout.getTag();
    }

    holder.title.setText(o.title.trim());

    return layout;
}

@Override
public int getChildrenCount(int groupPosition) {
    return child.arrayList.size();
}

@Override
public Object getGroup(int groupPosition) {
    return child;
}

@Override
public int getGroupCount() {
    return 1;
}

@Override
public long getGroupId(int groupPosition) {
    return groupPosition;
}

@Override
public View getGroupView(int groupPosition, boolean isExpanded,
        View convertView, ViewGroup parent) {
    View layout = convertView;
    GroupViewHolder holder;

    if (layout == null) {
        layout = inflater.inflate(R.layout.item_to_inflate, parent, false);
        holder = new GroupViewHolder();

        holder.image = (ImageView) layout.findViewById(R.id.image);
        holder.title = (TextView) layout.findViewById(R.id.title);
        layout.setTag(holder);  
    } else {
        holder = (GroupViewHolder) layout.getTag();
    }
    holder.title.setText(o.title.trim());

    return layout;
}

@Override
public boolean hasStableIds() {
    return true;
}

@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
    return true;
}

private static class GroupViewHolder {
    TextView title;
    ImageView image;
}

private static class ChildViewHolder {
    TextView title;
}

}

Я могу'• развернуть дочерние списки в корневом ExpandableListView; Знаете ли вы какой-нибудь правильный способ расширить элементы на уровне родителей?

Я попытался в getChildView RootAdapter:

if (groupToExpand == groupPosition && childToExpand == childPosition) {
    elv.expandGroup(childToExpand);
}

Затем в деятельности я изменил:

if (arrayList!= null && !arrayList.isEmpty()) {
    RootAdapter adapter = new RootAdapter(this, arrayList);
    elv.setAdapter(adapter);
    // this selects the correct group, but doesn't expand the child.
    elv.setSelectedChild(groupToExpand, childToExpand, true); 
    elv.expandGroup(groupToExpand); // this works.

    adapter.groupToExpand = groupToExpand;
    adapter.childToExpand = childToExpand;
    adapter.notifyDataSetChanged();
}

Это расширяет элемент родительского уровня, НО, он генерирует повторяющиеся элементы родительского уровня. Как мне сделать это правильно? Это правильный путь, но мой адаптер сломан, поэтому генерирует дубликаты?

Я просто могуне могу найти то, что ям здесь не хватает ...

Ответы на вопрос(2)

Ваш ответ на вопрос