会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
记忆收容所
追求卓越成功就会不期而来
博客园
首页
新随笔
联系
订阅
管理
2022年11月28日
adb shell
摘要: 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)
2022年11月24日
常用shell命令
摘要: 批量文件重命名 # 把.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)
2016年1月22日
Andrord问题小结
摘要: 问题描述: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)
2015年7月27日
Android EditText小结
摘要: 防止EditText获取焦点弹出输入法 android:focusable="true" android:focusableInTouchMode="true" EditText不可编辑,获取点击事件 android:editable="false" et.setOnTouchListener(ne
阅读全文
posted @ 2015-07-27 13:59 davidlee1219
阅读(135)
评论(0)
推荐(0)
公告