`
文章列表
反编译工具 : 总结了一下 linux, windows, mac 上的版本, 一起放到 CSDN 上下载; -- CSDN 下载地址 :http://download.csdn.net/detail/han1202012/8221787 octopus@octopus:~/decompiler$ tree -L 2 . ├── linux │ ├── apktool │ ├── dex2jar-0.0.9.15 │ └── jd-gui ├── mac │ ├── apktool │ ├── dex2jar-0.0.9.15 │ └── jd-gui-0.3.5.osx.i686.dmg ...
博客地址 :http://blog.csdn.net/shulianghan/article/details/41624613 1. 算术运算符 算术运算符 : 加(+), 减(-), 乘(*), 除(/), 模(%), 自增(++); -- 其它运算 : 如果需要平方开放运算, 使用 math.h 中得方法即可; 源码示例 : /************************************************************************* > File Name: 10-arithmetic.m > Author: oc ...
博客地址 :http://blog.csdn.net/shulianghan/article/details/41520569 代码下载 : -- GitHub :https://github.com/han1202012/WheelViewDemo.git -- CSDN :http://download.csdn.net/detail/han1202012/8208997; 博客总结 : 博文内容 : 本文完整地分析了 WheelView 所有的源码, 包括其适配器类型, 两种回调接口 (选中条目改变回调, 和开始结束滚动回调), 以及详细的分析了 WheelView 主题源码, ...
整理下 博客中的资料 . 一. Android 应用开发 . 1. Android 组件 (1)【Android 应用开发】 Application 使用分析 【Android 应用开发】 Application 使用分析 :http://blog.csdn.net/shulianghan/article/details/40737419 ; -- Application 生命周期 : onCreate, onLowMemory, onTerminate, onConfigurationChanged; -- Application 使用场景 : Activity 间数据传递, ...
博客地址 :http://blog.csdn.net/shulianghan/article/details/41011605 fastjson 源码地址 : -- GitHub :https://github.com/alibaba/fastjson ; -- 示例源码 :https://github.com/alibaba/fastjson/wiki/Samples-DataBind ; --Jar下载:http://sourceforge.net/projects/fastjson/;
. 1. Secure CRT 中没有想要的字体 Windows 8 下没有 Courier New 字体, 需要在系统的字体上进行配置, 进入C:\Windows\Fonts 目录, 下面是目录的内容, 如果图标是半透明的, 说明这个字体没有启用, 系统中就无法使用这个字体, 如图 : 此时, 右键点击, 在弹出的对话框选择显示, 即可在系统中启用该选项, 如图 : 选择显示后, 图标不再是半透明状态, 系统中即可使用该字体了, 如图 : 2. 配置 Secure CRT 高亮显示 光标 和 字体 右键点击选项卡, 选择 Session Options 选项, 弹出对话框, 如 ...
博客地址 :http://blog.csdn.net/shulianghan/article/details/40737419 代码下载 : Android 应用 Application 经典用法; -- Github :https://github.com/han1202012/ApplicationDemo -- CSDN :http://download.csdn.net/detail/han1202012/8127247 一. Application 分析 1. Application 简介 (1 ...
android.provider.Settings。 1.   ACTION_ACCESSIBILITY_SETTINGS :    // 跳转系统的辅助功能界面            Intent intent =  new Intent(Settings.ACTION_ACCESSIBILITY_SETTINGS);             startActivity(intent);  2.    ACTION_ADD_ACCOUNT :               // 显示添加帐户创建一个新的帐户屏幕。【测试跳转到微信登录界面】              Intent ...
博客地址 :http://blog.csdn.net/shulianghan/article/details/40299813 本篇文章中用到的工具源码下载 : -- ok-6410A 附带的 Android 光盘 下载地址 :http://pan.baidu.com/share/link?shareid=3662728609&uk=2754759285 ; -- 光盘所含内容 : Android 引导 u-boot 源码, Android 内核 源码, Android 系统源码, 交叉编译工具链; 各项操作说明 : -- 编译环境 : 编译源码 (u-boot, 内核, Andr ...
转载著名出处 :http://blog.csdn.net/shulianghan/article/details/40351487 代码下载 : -- CSDN 下载地址 :http://download.csdn.net/detail/han1202012/8069497 ; -- GitHub 地址 :https://github.com/han1202012/CircleProcess.git ; -- 工程示例 : 一. 相关知识点解析 1. 自定义 Vi ...
Android MMS,SMS之常用Uri Android提供了很多查询系统数据的Uri,这里是一些关于MMS,SMS常用的Uri以及对其的一些分析 Uri: content://sms sql语句: SELECT * FROM sms WHERE ({where}) ORDER BY date DESC 可用列: _id:thread_id:address:person:date:protocol:read:status:type:reply_path_present: subject:body:service_center:locked:error_code:s ...
android短信的数据库的Uri是不公开的, 读取起来时灰常不方便的, 这里做了下总结.  用adb指令将mmssms.db从/data/data/com.android.providers.telephony/databases中pull出来 经常使用到的表有 canonical_addresses, sms, threads三个表格 sms是存储着所有的短信, 主要的列有_id, thread_id, address, person, date, read, type, body 关于的sms的Uri有 发件箱 content://sms/outbox 收件箱 content://sm ...
作者 : 万境绝尘 (octopus_truth@163.com) 转载请著名出处 :http://blog.csdn.net/shulianghan/article/details/39269163 示例代码下载 : -- GitHub :https://github.com/han1202012/Octopus_ActionBarStyle.git -- CSDN :http://download.csdn.net/detail/han1202012/7926959 一. 样式 和 主题 资源 1. 样式资源解析 (1) 样式简介 样式解析 : 样式是设置给 View 组 ...
作者 : 万境绝尘 (octopus_truth@163.com) 转载请注明出处 :http://blog.csdn.net/shulianghan/article/details/39204393 示例代码下载 : -- GitHub :https://github.com/han1202012/Octopus_ActionBar.git -- CSDN :http://download.csdn.net/detail/han1202012/7913297 一. ActionBar 基本操作 1. ActionBar 简介 ActionBar 位置: 位于老版本的标题栏位置; ...
作者 : 万境绝尘 (octopus_truth@163.com) 转载请著名出处 :http://blog.csdn.net/shulianghan/article/details/38895143 一. 相关模块解析 1. 播放载体 SurfaceView 简介 (1) SurfaceView 与 Surface SurfaceView 与 Surface 简介 : SurfaceView 中嵌入了一个 Surface, SurfaceView 可以操控 Surface 的 位置, 大小尺寸等; -- SurfaceView 绘制图像可见性 : Surface 相当与一块画板, ...
Global site tag (gtag.js) - Google Analytics