移动平台-月排行
当重写ImageView的时候需要获取android:src的值可以通过:getAttributeResourceValue("http://schemas.android.com/apk/res/android","src",0);获取如果是自定义的属性,比如bitmap通过:getAttribu...
分类:移动平台 时间:2014-09-26 22:46:20 收藏:0 阅读:464
今天在用这个导航栏的时候发现一个问题,UIPanGestureRecognizer是任何滑动手势都会辨别,它不像UISwipeGestureRecognizer一样有方向.这样在有些情况下会产生问题。...
分类:移动平台 时间:2014-11-21 23:19:18 收藏:0 阅读:757
//保存一张照片 String fileName = "IMG_" + String.valueOf(index) + ".jpg"; //jpeg文件名定义 File sdRoot = Environment.getExternalStorageDirectory(); //系统路径 String dir = "/jpeg/"; //文件夹名 File mkDir = new Fil...
分类:移动平台 时间:2014-11-23 17:32:51 收藏:0 阅读:705
参考link:1,http://stackoverflow.com/questions/15932041/how-can-i-add-a-watermark-in-a-captured-video-on-ios(添加水印)2,https://abdulazeem.wordpress.com/2012...
分类:移动平台 时间:2014-11-25 12:20:54 收藏:0 阅读:1773
账号和密码: 05128068**** xbfldz6658****IP:120.195.9.148域名:ims.js.chinamobile.com上图吧:
分类:移动平台 时间:2014-12-04 22:52:32 收藏:0 阅读:4013
今天运行其他的项目里的target,发现出现了这样的问题,解决方法就是查看一下,项目是否支持,设置的方向,就可以解决了...
分类:移动平台 时间:2014-12-11 15:49:03 收藏:0 阅读:611
一. 问题:Ubuntu启动后进入界面时,报错误Could not apply the stored configuration for monitors,分辨率无法设置二. 解决: 删除monitors.xml文件1 sudo rm -f ~/.config/monitors.xml
分类:移动平台 时间:2014-12-23 18:59:14 收藏:0 阅读:3867
打好包提交验证的时候报错了: unable to process application at this time due to the following error:The IPA is invalid.it does not include a payload directory : 解决方法: 修改info.plist Application requires iPhone e...
分类:移动平台 时间:2014-12-30 15:18:07 收藏:0 阅读:1284
Android 根据坐标获取控件方法!...
分类:移动平台 时间:2015-01-14 15:39:35 收藏:0 阅读:847
在需要给图片,图标等控件添加 点击效果,手势效果的UITapGestureRecognizer用法 直接看代码示例: - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. UIImageView...
分类:移动平台 时间:2015-01-20 10:26:28 收藏:0 阅读:504
默认的横屏角度是顺时针90度,修改为顺时针270度,即是逆时针90度。 1.查看相关逻辑,可以看到有个布尔值com.android.internal.R.bool.config_reverseDefaultRotation控制翻转: frameworks/base/policy/src/com/android/internal/policy/impl/PhoneWindowManage...
分类:移动平台 时间:2015-01-20 22:22:17 收藏:0 阅读:1034
#include #define LOG_TAG ""#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)struct timeval xTime;int xRet = gettimeofday(...
分类:移动平台 时间:2015-01-27 18:02:51 收藏:0 阅读:578
按照我的文章:http://blog.csdn.net/zangcf/article/details/23566999在ubuntu 14.04上搭建android编译环境,编译过程会出以下两个错误: 1,Can't locateSwitch.pm in @INC (you may need to install the Switch module) (@INC contains:/etc/pe...
分类:移动平台 时间:2015-02-13 16:36:01 收藏:0 阅读:2246
Gradle官方在新版本中已经实现了自动打包.so文件功能了。 只需要在build.gradle的文件中的android目录下配置一下即可:1 sourceSets { 2 main { 3 jniLibs.srcDirs = ['libs'] 4 ...
分类:移动平台 时间:2015-02-28 15:59:46 收藏:0 阅读:604
iOS项目上传到AppStore步骤流程...
分类:移动平台 时间:2015-03-01 13:17:48 收藏:2 阅读:148301
分类:Android2013-09-04 11:413529人阅读评论(4)收藏举报AndroidROM屏蔽系统APK签名检查最近两天一直在尝试更新Android中的关键库以达到定制ROM的效果,中间比较曲折,记录下来供自己和大家参考。因为我需要基于Android的原生代码做一定的修改,所以如果无法...
分类:移动平台 时间:2015-03-02 14:42:20 收藏:0 阅读:976
1,为当前已有的表添加新的字段alter table student add studentName varchar(20) not null;2,为当前已有的表中的字段设置为主键自增alter table student add constraint PK_studentId primaryKey...
分类:移动平台 时间:2015-03-07 13:55:40 收藏:0 阅读:4071
http://www.androidren.com/index.php?qa=310&qa_1=android-studio中如何设置代码展开或收起 Android Studio默认情况下有些代码或注释等是收起来的+。有些时候不符合个人习惯。 修改方法如下: 第一步、打开Preference。 第二步、找到Editor。 第三步、找到Code Folding,在右边面板就可以...
分类:移动平台 时间:2015-03-09 11:01:26 收藏:0 阅读:504
原文网址:http://www.cnblogs.com/shed/p/3737016.htmlAndroid 4.4上蓝牙协议栈采用的是BRCM和Google共同开发的bluedroid,代替了之前的Bluez.一、 Bluetooth 源码分布 (基于Android 4.4 )1. package...
分类:移动平台 时间:2015-03-11 19:06:36 收藏:0 阅读:1016
http://www.eoeandroid.com/forum.php?mod=viewthread&tid=554227新建了个hello world项目,运行就卡在Gradle:Executing tasks。我也遇到相同问题,我是修改了Settings-->Gradle-->选中Offline...
分类:移动平台 时间:2015-04-10 10:59:29 收藏:0 阅读:3056
194959697988121
上一页162412下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!