android常见问题积累

来源:互联网 发布:vb api浏览器 编辑:程序博客网 时间:2024/05/21 20:54
1.问题:Buttons in button bars should be borderless; use style="?android:attr/buttonBarButtonStyle" (and ?android:attr/buttonBarStyle on

 the parent)

解决办法:在 Button上添加属性  style="?android:attr/buttonBarButtonStyle"

2.问题:listview内每一项都有输入项时,当对其中一项进行输入时,数据会串行,导致展示效果和运行结果不正确

原因:ListView仅仅缓存了可视范围内的View,随后的滚动都是对这些View进行数据更新。不管你有多少数据,他都只用ArrayList缓存可视范围内的View,这样保证了性能,也造成了我以ListView只缓存View结构不缓存数据的假相。

解决办法:刷新数据时,仅在输入项的位置保存其数据值,其他的位置做缓存数据清空的操作(eg editText.setText("");)


0 0
原创粉丝点击