会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
lucky_star_star
奔向sunny的大道上ing
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
4
5
6
7
8
9
10
11
12
···
16
下一页
2015年11月9日
leetcode day1
摘要: 【所有详解可以参考】http://tianmaying.com/tutorials/tag/Leetcode?filter=hot&page=1Two Sum:Input:numbers={2, 7, 11, 15}, target=9Output:index1=1, index2=2解决思路:用一...
阅读全文
posted @ 2015-11-09 15:59 伟大的臭猪猪
阅读(173)
评论(0)
推荐(0)
2015年8月10日
解决VirtualBox下安装虚拟机(Ubuntu)出错(不能为虚拟电脑Ubuntu打开一个新的任务)的有关问题
摘要: 【转】http://www.myexception.cn/program/1964906.html解决VirtualBox下安装虚拟机(Ubuntu)出错(不能为虚拟电脑Ubuntu打开一个新的任务)的问题图片摘自别人错误提示如下:Unable to load R3 module D:\Progra...
阅读全文
posted @ 2015-08-10 23:18 伟大的臭猪猪
阅读(2156)
评论(0)
推荐(0)
2015年7月16日
安卓 canvas
摘要: 【转】http://blog.sina.com.cn/s/blog_61ef49250100qw9x.html(easy)【转】http://blog.csdn.net/rhljiayou/article/details/7212620画了个Android今晚瞎折腾,闲着没事画了个机器人——andr...
阅读全文
posted @ 2015-07-16 19:43 伟大的臭猪猪
阅读(814)
评论(0)
推荐(0)
安卓 主流框架
摘要: 网络请求——Xutils或者volley,图片加载——universal image loader,glider,Picasso数据库——Xutils消息通信——eventbus对比:1、Xutils可以处理多种类型的网络请求,volley需要修改2、volley可以对多个请求组成一个队列,保证网络...
阅读全文
posted @ 2015-07-16 19:09 伟大的臭猪猪
阅读(248)
评论(0)
推荐(0)
2015年7月12日
【转】mysql-5..6.23-win64.zip安装及配置
摘要: 【强烈建议!!!!】把文件夹的名字也改成如下所说的,不然即使你什么环境配置都对,启动服务的时候依然会出现‘net’不是计算机内部或外部的命令这种令人很郁闷的问题了!原文链接:http://jingyan.baidu.com/article/f3ad7d0ffc061a09c3345bf0.html?...
阅读全文
posted @ 2015-07-12 09:22 伟大的臭猪猪
阅读(273)
评论(0)
推荐(0)
2015年6月30日
安卓 广告位
摘要: 需求:类似网易新闻客户端,listview头部要显示广告位,广告位数量动态从后台获取,并且不一定一直有广告位问题:listview下拉刷新与广告位touch事件的冲突解决,广告位的左滑右滑事件与整个fragment的左右切换事件冲突解决,广告位的数量动态获取,作为listview的header显示解...
阅读全文
posted @ 2015-06-30 14:18 伟大的臭猪猪
阅读(340)
评论(0)
推荐(0)
2015年6月25日
listview 去掉header和footer中的分割线
摘要: 在listView中加上android:headerDividersEnabled="false"android:footerDividersEnabled="false"
阅读全文
posted @ 2015-06-25 15:24 伟大的臭猪猪
阅读(432)
评论(0)
推荐(0)
2015年6月11日
深入了解Bundle和Map
摘要: 【转】http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2015/0402/2684.html前言因为往Bundle对象中放入Map实际上没有表面上看起来那么容易。这篇博客是在Eugenio @workingkills Marletti的帮助...
阅读全文
posted @ 2015-06-11 14:27 伟大的臭猪猪
阅读(844)
评论(0)
推荐(0)
2015年6月4日
bitmap 加载的时候出现OOM,nullpointer
摘要: 1、OOM :对图片进行压缩,效果还不错:http://182.92.150.15:9876/static/server/topic_user/8068/201506/e5b37fec-0919-11e5-ad97-00163e0001ce.jpg2、NUllpointer:因为bitmap.dec...
阅读全文
posted @ 2015-06-04 15:00 伟大的臭猪猪
阅读(194)
评论(0)
推荐(0)
2015年5月28日
安卓组件service
摘要: 【转】http://blog.csdn.net/ithomer/article/details/7364024一、 Service简介Service是android 系统中的四大组件之一(Activity、Service、BroadcastReceiver、ContentProvider),它跟Ac...
阅读全文
posted @ 2015-05-28 16:40 伟大的臭猪猪
阅读(373)
评论(0)
推荐(0)
安卓组件-BroadcastReceiver
摘要: 【转】http://emilyzhou.blog.51cto.com/3632647/685387一、BroadcastReceiver的简介用于异步接收广播Intent,广播Intent的发送是通过调用Context.sendBroadcast()、广播接收者(BroadcastReceiver)...
阅读全文
posted @ 2015-05-28 15:10 伟大的臭猪猪
阅读(262)
评论(0)
推荐(0)
2015年5月19日
【bug】java.lang.NoSuchMethodError: android.widget.TextView.setBackground
摘要: 安卓的背景色设置需要根据SDK的版本来分情况考虑:if (Build.VERSION.SDK_INT >= 16) {textView.setBackground(null);} else {textView.setBackgroundDrawable(null);}
阅读全文
posted @ 2015-05-19 10:24 伟大的臭猪猪
阅读(663)
评论(0)
推荐(0)
2015年5月5日
Android webview
摘要: 1、webview的基础解析:http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2013/1010/1569.htmlWebView是安卓中用来显示html文本内容的的控件,对html5也有很好的支持,ios的控件UIWebView差不多。网...
阅读全文
posted @ 2015-05-05 15:14 伟大的臭猪猪
阅读(660)
评论(0)
推荐(0)
2015年5月4日
【转】安卓毛玻璃效果
摘要: http://www.cnblogs.com/lipeil/p/3997992.html
阅读全文
posted @ 2015-05-04 15:34 伟大的臭猪猪
阅读(161)
评论(0)
推荐(0)
2015年4月29日
INSTALL_FAILED_UPDATE_INCOMPATIBLE
摘要: 安装apk的时候,报错。解决:把所有这个apk的相关信息删除干净,隐藏较深的是设置->应用管理->这个应用的相关信息删除干净就可以了
阅读全文
posted @ 2015-04-29 10:34 伟大的臭猪猪
阅读(187)
评论(0)
推荐(0)
上一页
1
···
4
5
6
7
8
9
10
11
12
···
16
下一页
公告