1.临时保存每个item中的显示数量控件的text:
HashMap map = new HashMap();
使用map来保存每条item显示的数量值。EditText在BaseAdapter中的getView()
方法中去显示对应position的map中的值,如下:
editText.setText(map.get(position));
2. "...
分类:
移动开发 时间:
2015-05-18 09:06:31
阅读次数:
158
/****转载自http://blog.sina.com.cn/s/blog_6e334dc701018dyc.html****/android:layout_gravity="center_vertical"//设置控件显示的位置:默认top,这里居中显示,还有bottomandroid:hint...
分类:
其他好文 时间:
2015-05-15 15:20:39
阅读次数:
128