### 下载repo索引文件 ### chase@giga:~$ curl https://storage.googleapis.com/git-repo-downloads/repo -o repo % Total % Received % Xferd Average Speed Time Tim ...
分类:
移动开发 时间:
2020-01-16 10:49:29
阅读次数:
199
通知详解 一、发送通知的机制 在日常的app应用中经常需要使用通知,因为服务、广播后台活动如果有事件需要通知用户,则需要通过通知栏显示,而在Xamarin.Android下的通知需要获取NotificationManager服务,而该服务需要通过GetSystemService获取,同时还要传递一个 ...
分类:
移动开发 时间:
2020-01-10 10:41:11
阅读次数:
95
1. 介绍 Binder是Android下基于C/S架构的进程间通信机制,基于开源OpenBinder 从实现上来说可分为Binder驱动、ServiceManager、Server、Client四个组成部分 2. Binder驱动 Binder驱动代码主要位于drivers/android目录 2... ...
分类:
移动开发 时间:
2019-12-27 09:52:53
阅读次数:
112
使用Picasso组件去下载图片会发现图片宽高会变形不受等比缩放控制,即使设置了图片的 scaleType,可能是对Picasso的api没有用对, Picasso.with(this.activity) .load(AppModel.GetInstance().userAvatarPath) .n ...
分类:
移动开发 时间:
2019-12-11 23:18:59
阅读次数:
226
s https://www.androidtcpdump.com/download/4.9.3.1.9.1/tcpdump https://developer.android.google.cn/studio/command-line/adb android下使用tcpdump抓包 https:// ...
分类:
移动开发 时间:
2019-10-12 20:24:05
阅读次数:
131
工作的流程是这样:某个协程在栈上创建task对象,在task对象内有需要返回的cv::Mat。 然后把task放到另一个线程上去执行,然后切换到别的协程,等到工作线程执行完task后,再唤醒协程。 这时候协程内去访问cv::Mat使用是empty。 同样的代码,task对象不是在栈上创建,而是new ...
分类:
移动开发 时间:
2019-10-03 00:40:56
阅读次数:
166
源码来自:https://github.com/msteinert/libtask 首先是asm.S无法编译通过。 其次,编译context.c出现这些错误: ...
分类:
移动开发 时间:
2019-07-31 23:52:45
阅读次数:
241
1.使用了UMat,但是并未使用GPU计算 cv::dft()函数的定义是: dft()函数中这样调用opencl的版本: 2.opencl核函数编译失败 继续往后执行,debug版本opencv输出以下信息: 出错的代码是: bool enqueueTransform(InputArray _sr ...
分类:
移动开发 时间:
2019-06-26 16:35:26
阅读次数:
198
Unity Android 使用UnityWebRequest Post 数据后,没有获得服务器返回的数据 最近做一个项目,要用到http的get和post来跟服务器通讯。 然后使用UnityWebRequest来做,在PC上面全都是正常的,但是到了Android下,get是正常的,但是post,执 ...
分类:
移动开发 时间:
2019-06-11 17:42:17
阅读次数:
163
源码如下,实现把一个JPG保存成灰度图格式的BMP 编译命令行如下: 链接命令行如下: 然后使用adb上传adb root #手机必要要rootadb push jpg2bmp 1.jpg /data/data/tempadb shell cd /data/data/temp chmod +x jp ...
分类:
移动开发 时间:
2019-05-30 13:19:19
阅读次数:
180