自定义相机的时候,调用系统的相机,由于相机的分辨率,会出现短小的矩形框,总会出现黑色边框,如下图:
如果想实现全屏相机的话,这样做就可以了:
CALayer *viewLayer = self.imagePickerController.view.layer;
[viewLayer setBounds:CGRectMake(0.0, 0....
分类:
移动开发 时间:
2014-07-14 20:45:01
阅读次数:
290
本文用Java创建UI并联合JNI层操作surface来直接显示yuv数据(yv12),开发环境为Android 4.4,全志A23平台。
package com.example.myyuvviewer;
import java.io.File;
import java.io.FileInputStream;
import android.app.Activity;
import androi...
分类:
移动开发 时间:
2014-07-14 16:12:42
阅读次数:
562
ios6和ios7禁止屏幕旋转- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{ return(toInterfaceOrientation ==UIInterf...
分类:
移动开发 时间:
2014-07-14 15:44:43
阅读次数:
329
Mirror app和Google glass其他APP一样,UI简洁很重要,所以我们需要设计一下怎么布局。
分类:
移动开发 时间:
2014-07-14 15:47:11
阅读次数:
225
1.ios解析json使用开源json包,项目地址:http://stig.github.com/json-framework/NSData * responseData = [respones responseData]; NSString * strResponser = [[NSString ...
分类:
移动开发 时间:
2014-07-14 15:52:20
阅读次数:
187
android.permission.ACCESS_CHECKIN_PROPERTIES允许读写访问"properties”表在checkin数据库中,改值可以修改上传( Allows read/write access to the “properties” table in the checki...
分类:
移动开发 时间:
2014-07-14 16:00:04
阅读次数:
263
1,linux操作日志记录,记录从各个ip登陆到系统的账号,指向命令及命令执行时间#!/bin/bashecho "export PROMPT_COMMAND='{ msg=\$(history 1 | { read x y; echo \$y; }); logger -p local5.info ...
分类:
移动开发 时间:
2014-07-14 16:02:05
阅读次数:
269
返回Android游戏黑屏解决办法这几天逛cocos2d-x.org论坛,发现cocos2d-x的作者放出来一个帖子,用来解决返回Android游戏加载资源时黑屏的问题。帖子过些日子估计就沉了,所以转出来,以供后面查询。需要修改三个文件:1)cocos2dx/platform/CCPlatformM...
分类:
移动开发 时间:
2014-07-14 16:07:17
阅读次数:
1774
随着iOS平台开发的职位的增加,笔试、面试也越来越有“套路”,这里我总结了一些面试题,多数是Objective-C的基础知识,适合于面试新人,答案是我自己答的,不准确的地方,欢迎指出。1. Object-c的类可以多重继承么?可以实现多个接口么?Category是什么?重写一个类的方式用继承好还是分...
分类:
移动开发 时间:
2014-07-14 21:37:08
阅读次数:
278
package com.example.message;import android.app.Activity;import android.os.Bundle;import android.telephony.SmsManager;import android.text.TextUtils;imp...
分类:
移动开发 时间:
2014-07-14 21:45:44
阅读次数:
235
苹果iphone5c进水短路烧主板维修多少钱主板发霉腐蚀怎么办
分类:
移动开发 时间:
2014-07-14 21:53:10
阅读次数:
295
今天我们来熟悉测试环境:1. 下载server代码,并运行git clone https://github.com/SecurityCompass/LabServer.git2. 这个server是apk客户端的服务器端,运行:To run the HTTP server on port 8080p...
分类:
移动开发 时间:
2014-07-14 21:58:36
阅读次数:
412
1、相对布局简单的说,就是通过描述每个组件所在的位置,使用的layout_below等,就是控制组件与组件之间的位置关系。2.绝对布局就是通过描述他的x,y坐标来确定位置3.线性布局有两种是水平和竖直对其方式,一般情况下整体会使用线性布局,来排列众多的组件3.帧布局我感觉就是一层一层的,默认的情况下...
分类:
移动开发 时间:
2014-07-14 22:01:06
阅读次数:
192
北京苹果iphone维修店在哪里iphone5s进水不开机维修多少钱
分类:
移动开发 时间:
2014-07-14 15:40:39
阅读次数:
232
1,@property (nonatomic,readwrite)NSInteger score;注意这里有一个只读和只写的属性,readonly.2,重写初始化方法也可以改名字和传参数,(改名一般以initWith开头),-(instancetype) initWithCardCount:(NSU...
分类:
移动开发 时间:
2014-07-14 22:10:48
阅读次数:
389
导入库头文件(重点)#import //圆角设置imageView.layer.cornerRadius = 6;imageView.layer.masksToBounds = YES;//边框宽度及颜色设置[imageView.layer setBorderWidth:2];[imageView....
分类:
移动开发 时间:
2014-07-14 22:13:29
阅读次数:
262