码迷,mamicode.com
首页 >  
搜索关键字:listview    ( 5464个结果
Android学习---ListView和Inflater的使用,将一个布局文件转化为一个对象
本文将介绍ListView和Inflater的使用,将接上一篇文章内容.一.什么是ListView?在android开发中ListView是比较常用的控件,ListView控件可使用四种不同视图显示项目,1.大(标准)图标2.小图标3.列表4.报表,比较常用的是列表的形式.ListItem对象可包含...
分类:移动开发   时间:2014-06-18 22:14:17    阅读次数:354
ScrollView 中ListView 高度不能正常显示(转)
解决办法如下: public void setListViewHeightBasedOnChildren(ListView listView) { // 获取ListView对应的Adapter ListAdapter listAdapter = list...
分类:其他好文   时间:2014-06-18 20:27:41    阅读次数:164
Android学习---ListView的点击事件,simpleAdapter和arrayadapter,SimpleCursoAdapter的原理和使用
如题,本文将介绍listview的点击事件,simpleAdapter和arrayadapter的原理和使用.1.ListView的注册点击事件 //注册点击事件 personListView.setOnItemClickListener(new AdapterView....
分类:移动开发   时间:2014-06-17 23:09:19    阅读次数:454
奇葩问题:ListView中Item与Item中的Button不能单击问题
android中ListView是一个经常要用到的一个组件,用到该组件时经常会碰到ListView的Item和Item中的Button不能单击的问题。本人在使用时同样也遇到过这样的情况,共有三种情况,总结如下:情况一:焦点问题: 设置android:descendantFocusability="b...
分类:其他好文   时间:2014-06-17 15:37:46    阅读次数:175
android ListView详解
转自:http://www.cnblogs.com/allin/archive/2010/05/11/1732200.html在android开发中ListView是比较常用的组件,它以列表的形式展示具体内容,并且能够根据数据的长度自适应显示。抽空把对ListView的使用做了整理,并写了个小例子,...
分类:移动开发   时间:2014-06-17 15:33:11    阅读次数:318
android捕获ListView中每个item点击事件
转自:http://www.cnblogs.com/pswzone/archive/2012/03/10/2389275.htmlpackagecom.wps.android;importjava.util.ArrayList;importandroid.app.Activity;importand...
分类:移动开发   时间:2014-06-17 15:19:52    阅读次数:254
android UI进阶之实现listview的分页加载
分享了下拉刷新,这是一个用户体验非常好的操作方式。新浪微薄就是使用这种方式的典型。...
分类:移动开发   时间:2014-06-16 20:43:49    阅读次数:236
Android4.0设置界面修改总结(三)
Android4.0设置界面修改总结大概介绍了一下设置改tab风格,其实原理很简单,理解两个主要的函数即可: ①.invalidateHeaders(),调用此函数将重新调用onBuildHeader()来重新读取xml文件中的header,重新刷新HeaderAdapter中的数据,因此刷新了ListView的内容,从而更新了界面。 ②.onBuildHeaders()中调用loadHead...
分类:移动开发   时间:2014-06-16 14:20:36    阅读次数:554
cocos2d-x3.0 ListView
.h#include "cocos2d.h"#include "cocos-ext.h"#include "ui/CocosGUI.h"#include "cocostudio/CocoStudio.h"USING_NS_CC;USING_NS_CC_EXT;using namespace ui; ...
分类:其他好文   时间:2014-06-15 11:16:25    阅读次数:276
ListView IllegalStateException
贴出源码: android.widget.ListView ... if(mItemCount == 0){ resetList(); invokeOnItemScrollListener(); return; }else if(mItemCount != mAdapter.getCount()){ throw new IllegalStateException("The conte...
分类:其他好文   时间:2014-06-14 12:34:02    阅读次数:245
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!