随机推荐
Android截图命令介绍
前言记录一下adb shell截图正文screencap # screencap截图到指定的目录等adb shell screencap -p /sdcard/screen.png# pull到当前目录adb pull /sdcard/screen.pnginput keyeven...
新建工程,导入旧的module,出现Android Studio duplicate entry xx.class
前言这个是导入SystemUI时出现的,记录一下,方便自己查阅。好记性不如烂笔头正文导入旧的module后出现:Cause: duplicate entry: androidx/core/R$attr.class更多日志Execution failed for task ':Sys...
Android自定义view生命周期
自定义布局或者自定义view都是一样的流程周期如下 # 进入 onFinishInflate: onAttachedToWindow: onWindowVisibilityChanged: onVisibilityChanged: on...
Can not perform this action after onSaveInstanceState
java.lang.IllegalStateException异常 Line 151151: 06-14 19:15:46.601 1804 1804 E Media: java.lang.IllegalStateException: Can not perform this action ...
TextView设置倾斜右边显示不全
直接上布局代码 <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@an...
Android (/sys/路径)属性文件节点值的读写
Android (/sys/路径)属性文件节点值的读写,在朋友代码基础上增加了finally 代码。如下,大致如此 /** * 文件的读取权限记得添加咯 */ /** * 某个节点写入值 * * @param value...