【问题标题】:Turning expandableListView example into a fragment将 expandableListView 示例转换为片段
【发布时间】:2013-08-21 18:02:00
【问题描述】:

我一直在寻找将可扩展列表视图添加到片段的方法,我已经阅读了文档,但仍然对如何做到这一点感到困惑。所以我有两个问题:

  1. 有没有办法可以把这个:http://www.androidhive.info/2013/07/android-expandable-list-view-tutorial/ 变成一个片段?

  2. 在下面给出的代码中,我尝试将android:groupIndicator 的指标添加到可扩展列表视图中,但它没有显示。这是代码,有没有办法可以直接向其中添加指标?

     public class Services extends SherlockFragment {
    
    @Override
     public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle    savedInstanceState) {
    View v = inflater.inflate(R.layout.services_layout, null);
    ExpandableListView elv = (ExpandableListView) v.findViewById(R.id.list);
    elv.setAdapter(new SavedTabsListAdapter());
    return v;
    }
    
    public class SavedTabsListAdapter extends BaseExpandableListAdapter {
    
    private String[] groups = { "Class 13", "Class 12", "Class 11", "Class 10", "Class 9" };
    
    private String[][] children = {
        { "Blue", "Green" },
        { "Orange", "Purple", "Black" },
        { "White", "Brown" },
        { "Golden", "Silver", "Red" },
        { "Pink", "Gray", "Yellow" }
    };
    
    @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(Services.this.getActivity());
        textView.setText(getGroup(i).toString());
        textView.setBackgroundColor(0xFF3F9FE0);
        return textView;
    }
    
    @Override
    public View getChildView(int i, int i1, boolean b, View view, ViewGroup viewGroup) {
        TextView textView = new TextView(Services.this.getActivity());
        textView.setText(getChild(i, i1).toString());
        return textView;
    }
    
    @Override
    public boolean isChildSelectable(int i, int i1) {
        return true;
    }
    

    } }

【问题讨论】:

    标签: android android-fragments expandablelistview


    【解决方案1】:

    您可以使用类似于下面的内容。为我工作:

    public static class LineupFragment extends Fragment {
    
    View rootView;
    ExpandableListView lv;
    private String[] groups;
    private String[][] children;
    
    
    public LineupFragment() {
    
    }
    
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    
        groups = new String[] { "Test Header 1", "Test Header 2", "Test Header 3", "Test Header 4" };
    
        children = new String [][] {
            { "s simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum." },
            { "Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of comes from a line in section 1.10.32." },
            { "It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like)." },
            { "There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc." }
        };
    }
    
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        rootView = inflater.inflate(R.layout.fragment_lineup, container, false);  
    
    return rootView;
    }
    
    @Override
    public void onViewCreated(View view, Bundle savedInstanceState) {
        super.onViewCreated(view, savedInstanceState);
    
        lv = (ExpandableListView) view.findViewById(R.id.expListView);
        lv.setAdapter(new ExpandableListAdapter(groups, children));
        lv.setGroupIndicator(null);
    
    }
    
    public class ExpandableListAdapter extends BaseExpandableListAdapter {
    
        private final LayoutInflater inf;
        private String[] groups;
        private String[][] children;
    
        public ExpandableListAdapter(String[] groups, String[][] children) {
            this.groups = groups;
            this.children = children;
            inf = LayoutInflater.from(getActivity());
        }
    
        @Override
        public int getGroupCount() {
            return groups.length;
        }
    
        @Override
        public int getChildrenCount(int groupPosition) {
            return children[groupPosition].length;
        }
    
        @Override
        public Object getGroup(int groupPosition) {
            return groups[groupPosition];
        }
    
        @Override
        public Object getChild(int groupPosition, int childPosition) {
            return children[groupPosition][childPosition];
        }
    
        @Override
        public long getGroupId(int groupPosition) {
            return groupPosition;
        }
    
        @Override
        public long getChildId(int groupPosition, int childPosition) {
            return childPosition;
        }
    
        @Override
        public boolean hasStableIds() {
            return true;
        }
    
        @Override
        public View getChildView(int groupPosition, final int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
    
             ViewHolder holder;
                if (convertView == null) {
                    convertView = inf.inflate(R.layout.list_item, parent, false);
                    holder = new ViewHolder();
    
                    holder.text = (TextView) convertView.findViewById(R.id.lblListItem);
                    convertView.setTag(holder);
                } else {
                    holder = (ViewHolder) convertView.getTag();
                }
    
                holder.text.setText(getChild(groupPosition, childPosition).toString());
    
                return convertView;
        }
    
        @Override
        public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
            ViewHolder holder;
    
            if (convertView == null) {
                convertView = inf.inflate(R.layout.list_group, parent, false);
    
                holder = new ViewHolder();
                holder.text = (TextView) convertView.findViewById(R.id.lblListHeader);
                convertView.setTag(holder);
            } else {
                holder = (ViewHolder) convertView.getTag();
            }
    
            holder.text.setText(getGroup(groupPosition).toString());
    
            return convertView;
        }
    
        @Override
        public boolean isChildSelectable(int groupPosition, int childPosition) {
            return true;
        }
    
        private class ViewHolder {
            TextView text;
        }
    }
    

    【讨论】:

      【解决方案2】:
      1. 这里没问题,您可以像活动一样执行此操作,当您需要上下文时,只需使用getActivity()
      2. 在 xml 代码中 android:groupIndicator="@drawable/indicator_pic" 或以编程方式 expanadableListView.setGroupIndicator(R.drawable.your_pic);。类似的东西是here。随时问我。

      【讨论】:

        【解决方案3】:

        您可能需要查看the example source code。此类使用您在片段中谈到的功能。

        【讨论】:

          猜你喜欢
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          • 2020-03-26
          • 2015-06-21
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          相关资源
          最近更新 更多