/** 根据屏幕的方向设置扫描的方向 * @author maguang * @param parameter * @return result */- (void)showaCapture{ CGAffineTransform transform; if (self.interface...
分类:
其他好文 时间:
2014-09-03 08:22:16
阅读次数:
422
解决了Android4.0以上版本不调用onConfigurationChanged方法。...
分类:
其他好文 时间:
2014-08-29 16:09:48
阅读次数:
131
一般通过navigator.userAgent来嗅探Android系统和IOS系统:if(/android/i.test(navigator.userAgent)){ //android}if(/iphone/ipad/mac/i.test(navigator.userAgent)){ //io.....
分类:
移动开发 时间:
2014-08-28 22:24:26
阅读次数:
590
最近项目用到了相机拍照的功能,于是想着封装好一些通用性较好的相机调用,从百度和谷歌上查找出来的资料真的印证了“天下文章一大抄”的道理,而且它们实现的拍照功能大都存在缺陷,如聚焦问题、重复拍照问题、照片存储问题、横竖屏转换问题。一大堆的问题,而且程序的扩展性和可重用性实在不敢恭维,排版级其混乱。
最后无奈,打开API文档camera相机类,从最基础的学起,然后自己进行改进,从这里也告诉我们一个道理...
分类:
其他好文 时间:
2014-08-25 19:26:54
阅读次数:
328
/* 设备竖屏时调用该段css代码 */ @media all and (orientation : portrait){ body{ background-color:blue; } } /* 设备横屏时调用该段css代码 */ @media all and (orientation : la.....
分类:
移动开发 时间:
2014-08-21 18:34:54
阅读次数:
345
本文主要讲述ios的几种设置横竖屏方法以及Android如何设置竖屏...
分类:
移动开发 时间:
2014-08-16 17:11:10
阅读次数:
216
IOS屏幕自动旋转,强制横竖屏方法:- (BOOL)shouldAutorotate{ return YES;}- (NSUInteger)supportedInterfaceOrientations{ return (UIInterfaceOrientationMaskAll);// ...
分类:
移动开发 时间:
2014-08-15 19:19:09
阅读次数:
775
最终效果图:
代码片段:
//
// DockItemLocation.m
// 帅哥_团购
//
// Created by beyond on 14-8-13.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#import "DockItemLocation.h"
// 点击dock上面的lo...
分类:
移动开发 时间:
2014-08-14 16:53:58
阅读次数:
169
今天在看log的时候发现,Launcher activity会被onDestroy掉一次,然后再重启。
可能原因猜测:
1.横竖屏切换
2.MCC MNC等Configuration改变引起的 MCC(移动国家码)和 MNC(移动网络码)
由于当时的Launcher设置为强制横屏了,应该是不会引起重启的。
对于Configuration改变系统会发一个android.intent...
分类:
其他好文 时间:
2014-08-13 19:05:57
阅读次数:
215
横竖屏切换,不重新加载
Up to API 13 there was a new value to the configChanges attribute, screenSize
So if you're using large screens make sure to add screenSize in your configChanges attribute:
android:confi...
分类:
移动开发 时间:
2014-08-13 15:02:36
阅读次数:
251