连接语法: $ adb connect ip:port 断开连接: $ adb disconnect ip:port 可能遇到问题:unable to connect to 192.168.199.248:5555: Connection refused 解决办法(设置监听端口): su 切换roo ...
分类:
移动开发 时间:
2020-01-30 19:19:40
阅读次数:
197
Create a Group Policy on AD DC Server. The GPO policy will come into effect on the next login, or use the following command to force the GPO to update ...
分类:
移动开发 时间:
2020-01-30 19:12:31
阅读次数:
100
private void setReg() { string myAppPath = System.IO.Path.GetFileName(System.Reflection.Assembly.GetExecutingAssembly().Location); RegistryKey key = R ...
分类:
移动开发 时间:
2020-01-30 14:18:33
阅读次数:
85
一、重命名 用shift + F6 或者右键单击 二、抽取方法 、三、生成变量 、 四、文件移动复制和删除 可以右键 ...
分类:
移动开发 时间:
2020-01-30 14:16:47
阅读次数:
110
所用的版本:Android Studio3.4.1、openCV 3.4.9 1.下载 在opencv官网下载最新的SDK包,本人下载的版本是3.4.9,下载完毕之后解压。 下载地址:https://opencv.org/releases/ 2.导入 (1)新建一个Android项目OpenCVTe ...
分类:
移动开发 时间:
2020-01-30 14:11:49
阅读次数:
137
这半个月一直在学习Android方面的知识,对Android开发有了一个基本的认识,学会了Android studio的基本操作。 在建立第一个Android studio项目时,我遇到了很大的阻碍,像这种问题ERROR: Cause: unable to find valid certificat ...
分类:
移动开发 时间:
2020-01-30 14:10:38
阅读次数:
111
termux的安装 参考Termux 入门与实践 简书 https://www.jianshu.com/p/6fd84cc74a5e 一定记得执行termux setup storage给访问内部存储权限 安装Python及其相关依赖库 pkg upgrade pkg install python ...
分类:
移动开发 时间:
2020-01-30 12:59:09
阅读次数:
469
[toc] 本分享为脑机学习者Rose整理发表于公众号:脑机接口社区(微信号:Brain_Computer).QQ交流群:903290195 简介 近年来,深度学习方法的快速发展使得无需任何特征工程的端到端学习成为可能,这有利于BCI运动想象应用的发展。慕尼黑工业大学和澳大利亚研究发展团队(Rese ...
分类:
移动开发 时间:
2020-01-30 12:47:17
阅读次数:
150
在gradle.properties中添加如下代码即可 android.enableJetifier=true android.useAndroidX=true ...
分类:
移动开发 时间:
2020-01-30 11:18:46
阅读次数:
204
跑面,是一个汉语词汇,拼音为pǎo miàn,英文名为Run-Noodles,最基本解释为人跑步去吃面,其意义还有多重深层解释。 ...
分类:
移动开发 时间:
2020-01-30 11:17:17
阅读次数:
109
1.axios安装 npm install axios import axios from 'axios' 2.axios使用 使用格式是 1.axios({配置信息}).then(res=>{console.log(res)}).catch(err=>{console.log(err)}) //r ...
分类:
移动开发 时间:
2020-01-30 09:41:44
阅读次数:
92
我们都知道军队里,哨兵的角色很重要,敌人来了先把哨兵解决了。猴子,在企业网站 架构里,这个监控系统就相当于哨兵的作用,监控系统非常重要。体检。。 监控系统都需要监控: 1、本地资源:负载uptime, CPU(top,sar), 磁盘(df h),内存(free swap ),lO(iostat), ...
分类:
移动开发 时间:
2020-01-30 09:41:25
阅读次数:
89
app :创建项目后,自动创建一个名称为app的Module manifests:保存配置文件 java:保存java源代码文件 res:保存资源文件 Gradle Scripts:保存Gradle构建和属性文件 manifests节点manifests节点用于显示Android应用程序的配置文件 ...
分类:
移动开发 时间:
2020-01-29 23:53:24
阅读次数:
140
ActionBar指的是app上面那一栏选项 首先要自定义一个资源文件夹menu,在里面写一些菜单选项 <?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/and ...
分类:
移动开发 时间:
2020-01-29 23:34:11
阅读次数:
98
1.某些APP安装在模拟器时提示“ this probably means that the app contains ARM native code and your Genymotion device cannot run ARM instructions. You should either ...
分类:
移动开发 时间:
2020-01-29 23:26:57
阅读次数:
138
(一)ImageButton和ImageView ImageButton与Button的功能完全相同,只是ImageButton上显示的是图像,并且每个ImageButton组件都必须指定一个id,以便在程序中使用该按钮, android:src属性则是用来设置它显示的图像 ImageView是一个 ...
分类:
移动开发 时间:
2020-01-29 22:01:28
阅读次数:
101
之前是,直接在Mapper类上面添加注解@Mapper,这种方式要求每一个mapper类都需要添加此注解,麻烦。 通过使用@MapperScan可以指定要扫描的Mapper类的包的路径,比如: 同时,使用@MapperScan注解多个包 如果如果mapper类没有在Spring Boot主程序可以扫 ...
分类:
移动开发 时间:
2020-01-29 21:54:32
阅读次数:
108