摘要: adb shell 查看设备 adb devices List of devices attached 5ecf5fbc device 连接设备 # 单个设备 adb shell # 多个设备需要指定 adb -s 5ecf5fbc shell 安装APP adb install -r demo.a 阅读全文
posted @ 2022-11-28 16:24 davidlee1219 阅读(187) 评论(0) 推荐(0)
摘要: 批量文件重命名 # 把.txt 后缀的改成 .java后缀 rename 's/.txt/.java/' *.txt 显示当前目录下文件的大小 ls -lh 显示当前目录的大小 du -sh 查找文件 # 查找当前目录及其子目录下的txt文件 find . -name '*.txt' 显示当前目录文 阅读全文
posted @ 2022-11-24 16:23 davidlee1219 阅读(42) 评论(0) 推荐(0)
摘要: 问题描述:Gradle version 2.10 is required. Current version is 2.8.Gradle版本由2.8升为2.10后,发现所有依赖play-services的module都无法构建了,提示如下错误:java.io.FileNotFoundException... 阅读全文
posted @ 2016-01-22 16:09 davidlee1219 阅读(268) 评论(0) 推荐(0)
摘要: 防止EditText获取焦点弹出输入法 android:focusable="true" android:focusableInTouchMode="true" EditText不可编辑,获取点击事件 android:editable="false" et.setOnTouchListener(ne 阅读全文
posted @ 2015-07-27 13:59 davidlee1219 阅读(135) 评论(0) 推荐(0)