732003684

导航

上一页 1 2 3 4 5 6 ··· 18 下一页

2013年6月26日 #

如何禁止listview的item项获得焦点,而让item的子控件获得焦点

摘要: http://www.cnblogs.com/yexiubiao/archive/2013/02/24/2924324.html 阅读全文

posted @ 2013-06-26 14:34 732003684 阅读(169) 评论(0) 推荐(0) 编辑

2013年6月14日 #

关于expandableliatview的getChildView不执行的问题的解决

摘要: 一开始这个问题纠结了很久,为虾米getchildCount的值不为空为啥不执行getChildView后来百度之才发现,由于之前将组别们关闭,关闭后的组就不会去执行getChildView,所以最终的解决方法就是去展开该组跟http://www.eoeandroid.com/thread-196301-1-1.html的情况是一摸一样的 阅读全文

posted @ 2013-06-14 21:55 732003684 阅读(491) 评论(0) 推荐(0) 编辑

2013年6月12日 #

多个asyncTask同时与ui主线程交互时出现的问题

摘要: 转自http://blog.csdn.net/hitlion2008/article/details/7983449与主线程有交互时用AsyncTask,否则就用Thread 阅读全文

posted @ 2013-06-12 22:43 732003684 阅读(92) 评论(0) 推荐(0) 编辑

2013年5月16日 #

滑屏的做法

摘要: http://blog.csdn.net/qinjuning/article/details/7419207 阅读全文

posted @ 2013-05-16 17:35 732003684 阅读(190) 评论(0) 推荐(0) 编辑

2013年5月14日 #

Gson笔记

摘要: 转自:http://blog.sina.com.cn/s/blog_807f4f4e0100yw0f.html官网是最好的学习通道https://www.zxproxy.com/browse.php?u=PoVWZG8IRnWFg4MYzPJJAtBHtKbXBm3UMAF9kXdqMJS7W9Gap+o0TUstD6+1&b=6&f=noreferUserGuide 解释了Gson 解析 大部分应用Gson用来 JavaBean --> json 格式||json 格式-- > JavaBean前者称Gson 的 序列化后者 Gson 的反序列化Primitive 阅读全文

posted @ 2013-05-14 21:37 732003684 阅读(256) 评论(0) 推荐(0) 编辑

2013年4月17日 #

关于从相册取出图片后,图片不能按原来角度显示的问题解决方案

摘要: (在F:\java\心情秀)1、取得图片本身的角度/** * 获得图片的角度进行修正 */ private int readPicDegree(String path){ int degree = 0; try { ExifInterface exifInterface = new ExifInterface(path); int orientation = exifInterface.getAttributeInt( ExifInterface.TAG_ORIE... 阅读全文

posted @ 2013-04-17 17:01 732003684 阅读(232) 评论(0) 推荐(0) 编辑

上传数据到服务器以及从服务器下载数据

摘要: 1、json格式上传数据/** * * 功能说明:用户登陆操作创建时间:2012-11-7 下午4:03:41 * * @param name * 用户名 * @param password * 密码 void * @throws JSONException * */ public static LoginResponse login(String name, String password) { JSONObject jsonObject = ... 阅读全文

posted @ 2013-04-17 11:25 732003684 阅读(686) 评论(0) 推荐(0) 编辑

2013年4月14日 #

有关popupwindow

摘要: http://orgcent.com/android-popupwindow-usage/ 阅读全文

posted @ 2013-04-14 16:04 732003684 阅读(108) 评论(0) 推荐(0) 编辑

2013年4月9日 #

android消息推送的比较不错的文章

摘要: http://blog.csdn.net/lganggang131/article/details/7441854http://www.cnblogs.com/devinzhang/archive/2012/02/16/2354981.htmlhttp://hi.baidu.com/fenghuang1207/item/e18ff1a5dd4293268919d389 阅读全文

posted @ 2013-04-09 10:32 732003684 阅读(106) 评论(0) 推荐(0) 编辑

随手记(1)

摘要: /**检测网络状态*/private boolean isNetWorkAvaiable(){mConnMan = (ConnectivityManager)getSystemService(CONNECTIVITY_SERVICE);NetWorkInfo info = mConnMan.getActiveNetWork();if(info==null){ return false; }reurn info.isContected();}/***服务停掉自身**/stopSelf();/**轮询的方式(handler)**/private Handler handler = ne... 阅读全文

posted @ 2013-04-09 10:16 732003684 阅读(177) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 18 下一页