如何显示N级可扩展列表视图android,我只得到3级可扩展的例子。
指的是:link
请指导或分享我适合在android中进行多级可扩展显示的例子。
谢谢,

最佳答案

根据这个example

   public View getChildView(int groupPosition, int childPosition,

                   boolean isLastChild, View convertView, ViewGroup parent) {

             CustExpListview SecondLevelexplv = new CustExpListview(Vincent_ThreeelevellistActivity.this);

             SecondLevelexplv.setAdapter(new SecondLevelAdapter());

             SecondLevelexplv.setGroupIndicator(null);

             return SecondLevelexplv;

      }

在这里,getChildView方法通过CustExpListview类创建一个新的适配器,集合作为适配器。
同样地,您可以创建一个新的BaseExpandableListAdapter类并在CustExpListviewgetChildView方法中设置它。

08-05 19:40