今天跟大家分享一下UITableView的各个代理方法的用法,主要是根据SDK里面的介绍,再加上Atany自己的分析与测试,总结成此文。如果有疑问的话,希望大家留言告诉我~
本文主要讲解对于UITableView最重要的两个协议
UITableViewDataSource
UITableViewDelegate
UITableViewDataSource
1)tableView:cellForRowAtIndexPath:
申请一个cell插入到表视图特定的位置,cell生成访问到的方法。
2)numberOfSectionsInTableView:
返回表视图的分区数。
3)tableView:numberOfRowsInSection:
返回表视图中每个分区的行数。
4)sectionIndexTitlesForTableView:
返回分区索引的名称,使用此方法会在表视图右侧创建一个索引栏,通过点击索引可以快速跳转到指定分区。
5)tableView:sectionForSectionIndexTitle:atIndex:
点击索引栏会调用此事件,通过点击的标题与索引返回分区的索引。简单来说,就是设定点击右侧索引栏会跳转到的分区,如return 0,那么无论点击什么,都会跳转到分区0。
6)tableView:titleForHeaderInSection:
定义每一个分区头的名称。
7)tableView:titleForFooterInSection:
定义每一个分区尾的名称。
8)tableView:commitEditingStyle:forRowAtIndexPath:
要求数据源提交插入或者删除指定行的事件。即每次删除或者插入完成后都会响应该方法,commitEditingStyle参数标识此次操作是UITableViewCellEditingStyleInsert(插入)
or UITableViewCellEditingStyleDelete(删除)。
9)tableView:canEditRowAtIndexPath:
使得指定行为可编辑状态。
10)tableView:canMoveRowAtIndexPath:
使得指定行成可移动状态,如果指定为NO,则该行不会出现可拖动图标。
11)tableView:moveRowAtIndexPath:toIndexPath:
移动行之后调用的方法,可以在里面设置表视图数据list的一些操作。
UITableViewDelegate
1)tableView:heightForRowAtIndexPath:
返回行的高度。
2)tableView:willDisplayCell:forRowAtIndexPath:
在Cell将要显示时调用此方法,可以在这里修改重用的Cell的一些属性,例如颜色。
3)tableView:willSelectRowAtIndexPath:
通知委托指定行被将要选中,返回值为NSIndexPath是指返回响应行的索引,即可以点击一行而返回另一行索引,如果不想点击事件响应则返回nil。
4)tableView:didSelectRowAtIndexPath:
通知委托指定行被选中。
5)tableView:willDeselectRowAtIndexPath:
通知委托指定行将取消选中。
6)tableView:didDeselectRowAtIndexPath:
通知委托指定行被取消选中。
关于3)到6)的执行顺序:
willSelectRowAtIndexPath 当前行为:0
didSelectRowAtIndexPath 当前行为:0
willSelectRowAtIndexPath 当前行为:1
willDeselectRowAtIndexPath 当前行为:0
didDeselectRowAtIndexPath 当前行为:0
didSelectRowAtIndexPath 当前行为:1
注:在下一行将要选中后才取消上一行的选中。
7)tableView:viewForHeaderInSection:
设置分区的header的视图,可以为它添加图片或者其他控件(UIView的子类)
8)tableView:viewForFooterInSection:
设置分区footer的视图,可以为它添加图片或者其他控件(UIView的子类)
9)tableView:heightForHeaderInSection:
设置分区header的高度。
10)tableView:heightForFooterInSection:
设置分区footer的高度
11)tableView:willDisplayHeaderView:forSection:
通知委托将要显示分区header的视图
12)tableView:willDisplayFooterView:forSection:
通知委托将要显示分区footer的视图
13)tableView:willBeginEditingRowAtIndexPath:
通知委托,表视图将要被编辑(删除或者插入,而是不是编辑cell文字哦)
14)tableView:didEndEditingRowAtIndexPath:
表视图完成编辑。
15)tableView:editingStyleForRowAtIndexPath:
对当前行设置编辑模式,删除、插入或者不可编辑。
typedef enum {
//不可编辑
UITableViewCellEditingStyleNone,
//删除
UITableViewCellEditingStyleDelete,
//插入
UITableViewCellEditingStyleInsert
}UITableViewCellEditingStyle;
16)tableView:titleForDeleteConfirmationButtonForRowAtIndexPath:
在删除模式启动下,改变每行删除按钮的文字(默认为“Delete”)
17)tableView:shouldIndentWhileEditingRowAtIndexPath:
通知委托在编辑模式下是否需要对表视图指定行进行缩进,NO为关闭缩进,这个方法可以用来去掉move时row前面的空白。
18)tableView:targetIndexPathForMoveFromRowAtIndexPath:toProposedIndexPath:
移动行的过程中会多次调用此方法,返回值代表进行移动操作后回到的行,如果设置为当前行,则不论怎么移动都会回到当前行。
19)tableView:didEndDisplayingCell:forRowAtIndexPath:
通知委托指定的cell已经移出表视图,即拖动的时候移出视图的cell。
20)tableView:didEndDisplayingHeaderView:forSection:
通知委托指定的分区头已经移出表视图。
21)tableView:didEndDisplayingFooterView:forSection:
通知委托指定的分区尾已经移出视图
22)tableView:shouldShowMenuForRowAtIndexPath:
通知委托是否在指定行显示菜单,返回值为YES时,长按显示菜单。
23)tableView:canPerformAction:forRowAtIndexPath:withSender:
弹出选择菜单时会调用此方法(复制、粘贴、全选、剪切)
24)tableView:performAction:forRowAtIndexPath:withSender:
选择菜单项完成之后调用此方法。
25)tableView:shouldHighlightRowAtIndexPath:
通知委托是否开启点击高亮显示,YES为显示。
26)tableView:didHighlightRowAtIndexPath:
通知委托表示图的指定行被高亮显示。
27)tableView:didUnhighlightRowAtIndexPath:
通知委托表视图的指定行不在高亮显示,一般是点击其他行的时候。
【传送门】关于UIViewTable更多的学习:自定义UITableViewCell详解[两种方法]
http://blog.csdn.net/yang8456211/article/details/12790487
杨光(atany)原创,转载请注明博主与博文链接,未经博主允许,禁止任何商业用途。
博文地址:http://blog.csdn.net/yang8456211/article/details/12908429
博客地址:http://blog.csdn.net/yang8456211
—— by atany
本文遵循“署名-非商业用途-保持一致”创作公用协议android使用异步http框架和第三方HttpClinet上传文件完整源码
首先我们先来看一下使用第三方HttpClinet的实现方式
这种实现方式需要用到一下3个jar包
commons-fileupload-1.2.1.jar 、 commons-io-1.4.jar 、 commons-httpclient-3.0.1.jar 。
这些jar已经包含在源码工程里边了
关于使用步骤我不多说,代码里边的注释已经写明
public void uploadByHttpClient(View view) { String path = this.et_path.getText().toString().trim(); final String url = "http://110.65.99.66:8080/uploadfileServer/UploadFileServlet"; final File file = new File(path); // 先判断文件是否存在 if (file.exists() && file.length() > 0) { // 网络访问为耗时操作,应该放在子线程中执行 new Thread() { public void run() { // 1. 创建第三方HttpClient对象 HttpClient client = new HttpClient(); // 2. 创建POST请求对象 PostMethod post = new PostMethod(url); // 3. 设置请求体内容 try { // 参数体 Part[] ps = { new FilePart("file", file) }; post.setRequestEntity(new MultipartRequestEntity(ps, post.getParams())); // 4. 获取连接器管理对象 HttpConnectionManager manager = client .getHttpConnectionManager(); // 5. 设置参数提交的等待时间 manager.getParams().setConnectionTimeout(10000); // 6. 执行PostMethod方法 client.executeMethod(post); // 7. 程序执行到这里,说明成功 runOnUiThread(new Runnable() { @Override public void run() { Toast.makeText(MainActivity.this, "上传成功", 0) .show(); } }); } catch (Exception e) { e.printStackTrace(); runOnUiThread(new Runnable() { @Override public void run() { Toast.makeText(MainActivity.this, "上传失败", 0) .show(); } }); } }; }.start(); } else { Toast.makeText(this, "文件不存在!", 0).show(); } }
我们再来看看使用异步http框架的实现方式
安卓异步http框架是一个非常精巧的,用于andorid网络访问的开源框架。它简化了android自带的HttpClient的操作步骤。使用起来相对于上边的实现方式就简单多了
安卓异步框架源码下载
我们先要把下载下来的源码中library/src目录下的包给拷到安卓工程下的src目录
我们看一下核心实现代码
public void uploadByAsyncHttpClient(View view) { String path = this.et_path.getText().toString().trim(); final String url = "http://110.65.99.66:8080/uploadfileServer/UploadFileServlet"; final File file = new File(path); // 先判断文件是否存在 if (file.exists() && file.length() > 0) { // 1. 创建AsyncHttpClient对象 AsyncHttpClient client = new AsyncHttpClient(); // 2.设置参数体 RequestParams params = new RequestParams(); try { // 其实这里的异常不可能出现,因为上边已经做了判断 params.put("profile_picture", file); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } // 3.上传文件 client.post(url, params, new AsyncHttpResponseHandler() { // 上传成功时回调的方法 @Override public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) { Toast.makeText(MainActivity.this, "上传成功!", 0).show(); } // 上传失败时回调的方法 @Override public void onFailure(int statusCode, Header[] headers, byte[] responseBody, Throwable error) { Toast.makeText(MainActivity.this, "上传失败!错误码:" + statusCode, 0).show(); } }); } else { Toast.makeText(this, "文件不存在!", 0).show(); } }
1.从实现步骤来看,第一种用了7步,第二种只用了3步,操作步骤大大简化
2.第一种方式需要将网络访问的代码放到子线程中去,否则在4.0以上的系统上运行会抛出android.os.NetworkOnMainThreadException,而第二种不用去考虑这个异常
3.因为将网络访问的代码放到了子线程中去,所以子线程中如果有UI的更新,需要去调用Activity的runOnUiThread()方法
经过对比,第二种方式的优越性就凸显出来了。所以安卓的文件上传建议使用异步http框架来实现。
只要998,漂亮MM带回家。
效果图:自带缓存,瀑布流,使用google自己开发的Volley框架,速度唰唰的
项目结构图:
简单应用,未分包。为了看源码方便,Volley.jar直接打成了带source的jar文件,支持ctrl+点击查看源码哦
是不是心动了,赶快拿起你的手机安装吧
源码:http://download.csdn.net/detail/cj6585256/6431763