AndroidStudio列表⽤法之⼀:ListView图⽂列表显⽰(实例)前⾔:
ListView这个列表控件在Android中是最常⽤的控件之⼀,⼏乎在所有的应⽤程序中都会使⽤到它。
⽬前正在做的⼀个记账本APP中就⽤到了它,主要是⽤它来呈现收⽀明细,是⼀个图⽂列表的呈现⽅式,下⾯就讲讲具体是如何实现的。
效果图:
该功能是在另⼀篇博⽂【】的基础上进⾏添加的
实现的思路:
1、该功能是⽤fragment来做布局的,⾸先创建⼀个l布局⽂件,在⾥⾯添加⼀个ListView控件;
2、由于List⾥⾯既要呈现图⽚,也要呈现⽂字,所以再创建⼀个l布局⽂件,在⾥⾯添加ImageView、TextView,⽤来显⽰图⽚和⽂字;
3、使⽤SimpleAdapter来绑定数据;
具体实现逻辑:
1、创建l
1 <ListView
2    android:id="@+id/lv_expense"
3    android:layout_width="match_parent"
4    android:layout_height="wrap_content">
5
6 </ListView>
2、创建fragment_l
1 <ImageView
2    android:id="@+id/image_expense"
3    android:layout_width="wrap_content"
4    android:layout_height="wrap_content"
5    android:paddingTop="10dp"
6    android:paddingRight="10dp"
7    android:paddingBottom="10dp"
8    android:adjustViewBounds="true"
9    android:maxWidth="72dp"
10    android:maxHeight="72dp"/>
11 <TextView
12    android:id="@+id/tv_expense_category"
13    android:layout_width="wrap_content"
14    android:layout_height="wrap_content"
15    android:layout_weight="1"
16    android:padding="10dp"/>
17 <TextView
18    android:id="@+id/tv_expense_money"
19    android:layout_width="wrap_content"
20    android:layout_height="wrap_content"
21    android:text="10.0000"/>
3、主逻辑OneFragment.java
1 List<Map<String, Object>> listitem = new ArrayList<Map<String, Object>>(); //存储数据的数组列表
2//写死的数据,⽤于测试
3int[] image_expense = new int[]{R.mipmap.detail_income, R.mipmap.detail_payout }; //存储图⽚
4 String[] expense_category = new String[] {"发⼯资", "买⾐服"};
5 String[] expense_money = new String[] {"30000.00", "1500.00"};
6for (int i = 0; i < image_expense.length; i++)
7 {
8    Map<String, Object> map = new HashMap<String, Object>();
9    map.put("image_expense", image_expense[i]);
10    map.put("expense_category", expense_category[i]);
11    map.put("expense_money", expense_money[i]);
12    listitem.add(map);
13 }
14
15//创建适配器
16// 第⼀个参数是上下⽂对象
17// 第⼆个是listitem
18// 第三个是指定每个列表项的布局⽂件
19// 第四个是指定Map对象中定义的两个键(这⾥通过字符串数组来指定)
20// 第五个是⽤于指定在布局⽂件中定义的id(也是⽤数组来指定)
21 SimpleAdapter adapter = new SimpleAdapter(getActivity()
22        , listitem
23        , R.layout.fragment_one_item
24        , new String[]{"expense_category", "expense_money", "image_expense"}
25        , new int[]{R.id.tv_expense_category, R.id.tv_expense_money, R.id.image_expense});
26
27 ListView listView = (ListView) v.findViewById(R.id.lv_expense);
28 listView.setAdapter(adapter);
以上就是整个功能实现的逻辑,本⽂代码中,List中呈现的数据是写死的,从数据库中获取源数据的⽅式可以参考我的源代码,且使⽤的数据库是SQLite。
源代码:listview控件在哪里
SQLite数据库的使⽤:
如果您看了本篇博客,觉得对您有所收获,请点击右下⾓的 [推荐]
[推荐]
请注明出处
如果您想转载本博客,请注明出处
如果您对本⽂有意见或者建议,欢迎留⾔
感谢您的阅读,请关注我的后续博客

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。