1

我在片段中创建了可扩展的列表视图,它工作正常。但是,我想在单击可扩展列表视图子项时开始一项活动。我已经找了几个小时试图找到解决方案,但我找不到。有人请提供此问题的代码。

import android.R.color;
import android.app.Fragment;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseExpandableListAdapter;
import android.widget.ExpandableListView;
import android.widget.ExpandableListView.OnChildClickListener;
import android.widget.TextView;
import android.widget.Toast;

        // This is a listfragment class
        public class Categories extends Fragment {

            @Override
            public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
                View v = inflater.inflate(R.layout.categories, null);
                ExpandableListView elv = (ExpandableListView) v.findViewById(R.id.expandableListView1);
                elv.setAdapter(new SavedTabsListAdapter());
                return v;
            }

            public class SavedTabsListAdapter extends BaseExpandableListAdapter {

                private String[] groups = { "Men", "Women"};

                private String[][] children = {
                    { "Men's accessories", "Men's trousers"},
                    { "Dresses", "Women's trousers"}
                };

                @Override
                public int getGroupCount() {
                    return groups.length;
                }

                @Override
                public int getChildrenCount(int i) {
                    return children[i].length;
                }

                @Override
                public Object getGroup(int i) {
                    return groups[i];
                }

                @Override
                public Object getChild(int i, int i1) {
                    return children[i][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 View getGroupView(int i, boolean b, View view, ViewGroup viewGroup) {
                    TextView textView = new TextView(CategoriesFragment.this.getActivity());
                    textView.setText(getGroup(i).toString());
                    return textView;
                }

                @Override
                public View getChildView(int i, int i1, boolean b, View view, ViewGroup viewGroup) {
                    TextView textView = new TextView(CategoriesFragment.this.getActivity());
                    textView.setText(getChild(i, i1).toString());
                    return textView;
                }

                @Override
                public boolean isChildSelectable(int i, int i1) {
                    return true;
                }

            }

        Intent k;

        @Override
        public boolean onChildClick(ExpandableListView parent, View v,
                int groupPosition, int childPosition, long id) {
            switch(childPosition){
            case 0:
                k = new Intent(getActivity().getApplicationContext(), Baby.class);
                break;
            case 1:
                k = new Intent(getActivity().getApplicationContext(), Baby1.class);
                break;
            }
            startActivity(k);
            return true;
        }

        }
4

1 回答 1

1

当您单击子元素时,childposition您将获得什么OnChildClick功能?

你在哪里设置了一个ChildClickListener??如果你还没有设置,那么在这段代码之后ExpandableListView elv = (ExpandableListView) v.findViewById(R.id.expandableListView1); 写这一行elv.setOnChildClickListener("your_listener");

此外,为了获得最佳实践,您可以通过以下方式编写上述侦听器和 OnChildClick 函数:

首先删除您的 OnChildClick 和 OnChildClickListener (如果有),然后将您的代码放在上面的位置elv.setOnChildClickListener("your_listener");-

elv.setOnChildClickListener(new ExpandableListView.OnChildClickListener() {     
                @Override
                public boolean onChildClick(ExpandableListView parent, View v,
                        int groupPosition, int childPosition, long id) {
                     switch(childPosition){
                        case 0:
                            k = new Intent(getActivity().getApplicationContext(), Baby.class);
                            break;
                        case 1:
                            k = new Intent(getActivity().getApplicationContext(), Baby1.class);
                            break;
                        }
                        startActivity(k);
                        return true;
                }           
});

如果您仍然遇到任何问题,请告诉我们

于 2013-08-07T05:43:54.873 回答