码迷,mamicode.com
首页 > 其他好文 > 详细

适配器学习

时间:2021-06-22 17:56:31      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:键值对   ble   布局文件   androi   ring   string   icon   his   简单   

今天学习了simpleAdapter简单适配器

简单适配器在适配器中作用很大,例如微信qq的消息列表

simpleadapter的五个参数

data是一个

List<Map<String,Object>> data = new ArrayList<>();
Map<String,Object> map = new HashMap<>();
map.put("icon",R.drawable.apple);
map.put("name","套餐");
map.put("content","卤肉饭套餐");
data.add(map);
String[] from = new String[]{
"icon","name","content"
};
int [] to = new int[]{
R.id.food_image,
R.id.food_name,
R.id.food_content
};
form数组是键值对的String
to数组是布局文件中一一对应的id
android.widget.SimpleAdapter simpleAdapter = new android.widget.SimpleAdapter(this,data,R.layout.food_item,from,to);

适配器学习

标签:键值对   ble   布局文件   androi   ring   string   icon   his   简单   

原文地址:https://www.cnblogs.com/9635741zly/p/14916408.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!