会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
xunmengzhi
博客园
首页
新随笔
联系
订阅
管理
2016年6月29日
获取iOS设备型号iphone ipad
摘要: #import //获得设备型号 -(NSString *)getCurrentDeviceModel { int mib[2]; size_t len; char *machine; mib[0] = CTL_HW; mib[1] = HW_MACHINE; sysctl(mib, 2, NULL, &len, NULL, 0);...
阅读全文
posted @ 2016-06-29 14:33 xunmengzhi
阅读(355)
评论(0)
推荐(0)
编辑
2016年5月5日
iOS开发,用了ARC,引入非ARC的第三方,报错
摘要: ARC forbids explicit message sendof'dealloc' 在xcode中,打开“Build Setting”,找到“Objective-C Automatic Reference Counting”项,将它的值设置成“NO”,即可。 如果未找到“Objective-C
阅读全文
posted @ 2016-05-05 14:00 xunmengzhi
阅读(370)
评论(0)
推荐(0)
编辑
2014年10月9日
android Intent的常用flags
摘要: 首先,我们常见的由MainActivity跳转到另外一个Main1Acticity的代码:1 Intent mIntent=new Intent(MainActivity.this, Main1Activity.class);2 startActivity(mIntent); 一般的情况之...
阅读全文
posted @ 2014-10-09 11:38 xunmengzhi
阅读(1002)
评论(0)
推荐(0)
编辑
2014年8月5日
android 判断当前界面是否是桌面
摘要: 1 /** 2 * 获得当前活动APP的包名 3 * 4 * @return 返回当前活动界面是不是桌面 5 */ 6 private boolean isHomeWin() 7 { 8 ActivityManag...
阅读全文
posted @ 2014-08-05 10:19 xunmengzhi
阅读(913)
评论(1)
推荐(0)
编辑
2013年12月6日
"****" is not translated in zh, zh_CN.的解决方法
摘要: 最近在开发一个app,要用到静默安装等一些小技术,但是引发了问题如下: 在Android SDK Tool r19之后, Export的时候遇到xxx is not translated in yyy, zzz的问题。 例如说"auto_exit" is not translated in zh, ...
阅读全文
posted @ 2013-12-06 16:49 xunmengzhi
阅读(495)
评论(0)
推荐(0)
编辑
2013年9月29日
sqlite实现oracle的rownum功能
摘要: SELECT (SELECT COUNT(*) FROM [table] AS t2 WHERE t2.name <= t1.name) AS rowNum, id, nameFROM [table] t1ORDER BY t1.name asc
阅读全文
posted @ 2013-09-29 15:20 xunmengzhi
阅读(1126)
评论(0)
推荐(0)
编辑
2013年9月24日
Android Handler 最佳的理解资料
摘要:
阅读全文
posted @ 2013-09-24 11:58 xunmengzhi
阅读(140)
评论(0)
推荐(0)
编辑
2013年7月8日
android 滚动的缓冲图片
摘要: -----------------------java实现代码------------------------- private Animation mRotate; mRotate = AnimationUtils.loadAnimation(Auth.this, R.anim.rotate); ...
阅读全文
posted @ 2013-07-08 16:12 xunmengzhi
阅读(260)
评论(0)
推荐(0)
编辑
2013年4月27日
android 初级动画效果XML配置与代码使用
摘要: 1=======================淡入淡出===================== 1、先看配置文件 当只有一个标签是,动画执行一次 ---从100%透明结束(原图) /> java代码实现 AnimationSet animationSet = n...
阅读全文
posted @ 2013-04-27 15:12 xunmengzhi
阅读(404)
评论(0)
推荐(0)
编辑
2012年7月25日
IIS服务器设置允许匿名访问,仍然需用户名密码
摘要: IIS服务器已经设置为允许匿名访问,但浏览器客户端仍然要求输入用户名密码. 在服务器上用localhost访问则不需要,用ip访问需要. 解决方法:把IIS匿名访问的用户改为系统管理员就可以了.
阅读全文
posted @ 2012-07-25 15:29 xunmengzhi
阅读(2292)
评论(0)
推荐(0)
编辑
下一页
公告