摘要: WebSettings webSettings = webView.getSettings(); webSettings.setSupportZoom(true); webSettings.setJavaScriptEnabled(true); webSettings.setJavaScriptCanOpenWindowsAutomatically(true); webSettings.setBuiltInZoomControls(true);// support zoom webSettings.setPluginsEna... 阅读全文
posted @ 2013-10-16 09:35 BetterMan- 阅读(494) 评论(0) 推荐(0) 编辑
摘要: 1.复用convertView在getItemView中,判断convertView是否为空,如果不为空,可复用。2.异步加载图片item中如果包含有webimage,那么最好异步加载3.快速滑动时不显示图片当快速滑动列表时(SCROLL_STATE_FLING),item中的图片或获取需要消耗资源的view,可以不显示出来;而处于其他两种状态(SCROLL_STATE_IDLE 和SCROLL_STATE_TOUCH_SCROLL),则将那些view显示出来还可以进一步优化在listview中获取view 的操作比较耗时,因为这个操作时在布局xml文件中遍历所有节点进行判断后 才获取的。可以 阅读全文
posted @ 2013-10-16 09:30 BetterMan- 阅读(221) 评论(0) 推荐(0) 编辑