本文实例为大家分享了ExpandableListView使用示例,供大家参考,具体内容如下
MainActivity:
public class Expandable_test extends Activity { private ExpandableListView listView; private Map> dataset = new HashMap<>(); private String[] parentList = new String[]{"第一个菜单", "第二个菜单"}; private ExpandableListViewAdpter adpter; private Context mContext = this; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_expandable_test); listView=(ExpandableListView)findViewById(R.id.expandableListViewtext); adpter=new ExpandableListViewAdpter(this,parentList); listView.setAdapter(adpter); } }
Copyright © 2009-2022 www.wtcwzsj.com 青羊区广皓图文设计工作室(个体工商户) 版权所有 蜀ICP备19037934号