随笔分类 -  Android

摘要: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 阅读(193) 评论(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 阅读(270) 评论(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)