1

---更新如下---

我在SlidingMenu片段中显示ExpandableListView (ELV)时遇到问题。片段加载正常,如果我使用 ListView 没有问题。我已经实现了一个自定义适配器来加载组和子项的视图,当 ELV 在正常活动中加载时,一切都按预期工作。

我已经调试了很长时间,并且绘制了实际的 ELV(我将背景设置为全红色,它显示了我期望的位置),但是没有绘制组和子元素。加载带有滑动菜单的活动(如 getGroupView)时,将调用适配器中的所有相关方法。任何人都可以帮助我让实际的组和孩子在 SlidingMenu 中显示吗?

这是我在布局 XML 中的 ELV:

<ExpandableListView
    android:id="@+id/trackermenutypes_explist"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:transcriptMode="disabled"
    android:layout_gravity="right"
    android:layout_margin="15dp"
/>

适配器中获取视图的方法:

   @Override
    public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
        if (convertView == null) {
            convertView = mInflater.inflate(R.layout.listitem_typegroup, null);
        }
        ((TextView) convertView.findViewById(R.id.listitem_typegroup_name)).setText(mTypeGroups.get(groupPosition).getName());
        Log.d(TAG, "Returning GroupView for group \"" + mTypeGroups.get(groupPosition).getName() + "\"");
        return convertView;
    }

    @Override
    public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
        if (convertView == null) {
            convertView = mInflater.inflate(R.layout.listitem_type, null);
        }
        ((TextView) convertView.findViewById(R.id.listitem_type_name)).setText(mGroupedTypes.get(groupPosition).get(childPosition).getName());
        Log.d(TAG, "Returning ChildView for type \"" + mGroupedTypes.get(groupPosition).get(childPosition).getName() + "\"");
        return convertView;
    }

我的片段 onActivityCreated 方法(工作 ListView 在底部注释掉):

@Override
public void onActivityCreated(Bundle savedInstanceState) {
    Log.d(TAG, "onActivityCreated");
    super.onActivityCreated(savedInstanceState);
    mContext = (TrackerActivity) getActivity();
    //lTypesList = getListView();
    lExpList = (ExpandableListView)mContext.findViewById(R.id.trackermenutypes_explist);
    mPrefs = PreferenceManager.getDefaultSharedPreferences(mContext);

    mTypeGroupDataSource = new TypeGroupDataSource(mContext);
    mTypeGroupDataSource.open();
    mTypeGroups = mTypeGroupDataSource.getAllTypeGroups();

    mTypeDataSource = new TypeDataSource(mContext);
    mTypeDataSource.open();
    mTypes = mTypeDataSource.getTypesOfClub(DataService.DEFAULT_CLUB_ID);
    mTypes.addAll(mTypeDataSource.getTypesOfClub(mPrefs.getLong(DataService.PREFS_CLUB_ID, -1)));

    TypeAdapter typeAdapter = new TypeAdapter(mContext, mTypeGroups, mTypes);
    lExpList.setAdapter(typeAdapter);

    lExpList.setOnChildClickListener(new OnChildClickListener() {
        @Override
        public boolean onChildClick(ExpandableListView parent, View v, int groupPosition, int childPosition, long id) {
            mContext.updateCurrentType(id);
            mContext.getSlidingMenu().toggle();
            return true;
        }
    });
    Log.d(TAG, "Expanding " + typeAdapter.getGroupCount() + " groups");
    for (int i = 0; i < typeAdapter.getGroupCount(); i++){
        lExpList.expandGroup(i);
    }
    //TODO Implement "Add Type" feature
    /*ArrayAdapter<TypeData> typeAdapter = new ArrayAdapter<TypeData>(mContext, R.layout.listitem_type, R.id.listitem_type_name, mTypes);
    setListAdapter(typeAdapter);

    lTypesList.setOnItemClickListener(new OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View item, int position, long id) {
            mContext.updateCurrentType(position);
            mContext.getSlidingMenu().toggle();
        }
    });*/
}

---更新---我想出了一种方法来绘制组和项目,方法是使我的片段成为 ListFragment 并改用 setList。这是一种 hack,因为现在 setAdapter 不适用于我的自定义 BaseExpandableListAdapter。当我在实际列表中调用它时(来自 findViewByID),它不会对触摸事件做出反应。所以现在我有一个漂亮的清单,不能用。有什么建议么?

4

1 回答 1

0

在没有“破解”它并使用 ListFragment 的情况下,我似乎找不到任何关于让 ExpandableListView 在 SlidingMenu 中显示的答案 - 这导致无法在片段上使用标准 setAdapter 来设置 ExpandableListAdapter。如果可用的话,也许 ExpandableListFragment 可以解决问题。

对触摸事件没有反应的更新错误是我自己的错 - 我在适配器的 isChildSelectable 方法中返回 false。

于 2013-03-29T16:09:03.570 回答