Android中ExpandableListView使用示例详解-创新互联
本文实例为大家分享了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); } }
新闻标题:Android中ExpandableListView使用示例详解-创新互联
链接分享:http://scyanting.com/article/dcsigs.html