07 2016 档案
摘要:1、byte转换为16进制字符串: 1) 通过Integer.toHexString()方法 注意这里 b[i] & 0xFF 将一个byte与0xFF进行了与运算,其运算结果仍然是个int,那么为何要和 0xFF 进行运算? 直接 Integer.toHexString(b[i]),将 byte
阅读全文
摘要:自定义View系列教程01--常用工具介绍 简书版:http://miomin.coding.me/2016/06/10/%E3%80%90%E8%87%AA%E5%AE%9A%E4%B9%89View%E3%80%9101--%E5%B8%B8%E7%94%A8%E5%B7%A5%E5%85%B7
阅读全文
摘要:本文代码来自开源APP: OSChina 开源中国Android客户端 一、WebView的使用: 1、相关类:WebSettings、WebViewClient、WebChromeClient 2、生命周期回调:onResume()、onPause()、destroy() 3、加载页面: 3、We
阅读全文