随机推荐
ViewPager出现pointerIndex out of range
前言ViewPager展示图片时,对图片操作时出现如下异常AndroidRuntime: FATAL EXCEPTION: mainAndroidRuntime: Process: com.biumall.image, PID: 17729AndroidRuntime: java.lang...
android.view.ViewRootImpl$CalledFromWrongThreadException
android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views.哎,对自己无语了,竟然一时犯了这...
byte数组以十六进制字符串打印简介
前言在协议开发中,需要把byte数组格式化到日志中,方便查看收发的报文,比较常用的就是把byte数组格式化成十六制作的字符串。下面记录一下格式数据的方法,方便自己查阅。正文下面有常用的两种,效果都一样,个人比较喜欢第二种。隐藏内容!付费阅读后才能查看!¥1 ¥3多个隐藏块只需支付一次付费...
Thread中断简单介绍
前言简答记录一下Thread中断相关的内容。记录一下,方便自己查阅。正文Thread中断主要涉及如下几个方法:interrupt()isInterrupted()interrupted()下面单独介绍一下。interrupt()interrupt()使线程中断。...
fastboot卡在waiting for device
在刷入系统时,命令参考了《编译Android源码,并刷入Nexus7真机》中的fastboot -w flashall命令,出现如下提示:fastboot -w flashall< waiting for device >#使用fastboot devices后提示...
Android 对Bitmap的一些操作记录
前言Android中对Bitmap的操作很多,比如缩放,裁剪,旋转等,这里简单记录一下,方便自己查阅。PS: 参考别人内容修改,部分内容有改动和自己的理解。正文Matrix对Bitmap的操作大都需要Matrix支持,Matrix 通过矩阵来处理位图,计算出各个像素点的位置,从而把bit...