自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

CSDN博客不再更新,新内容请移步掘金:https://juejin.im/user/5886d699128fe1006c455fb6,有问题也请直接发邮件至[email protected]

  • 博客(2)
  • 资源 (28)
  • 问答 (1)
  • 收藏
  • 关注

原创 apk反编译工具操作汇总

前言:网上有很多介绍apk反编译工具的文章,但有些分散,特此汇总一下,也算是建个备忘录。纰漏之处,还望大家多多指正。 1 apktool 软件简介: apktool是Google推出的apk反编译和打包工具,依赖于Java运行环境。官方下载地址http://code.google.com/p/android-apktool/ 连不上官网的同学可以到我的CSDN下载,我已将最新版上传。

2015-04-23 17:13:35 999

原创 ADB操作常见问题汇总

1 mount operation not permitted 之前遇到这个问题,看网上的做法是进入shell下mount,貌似不好使的样子。最后直接输入adb root命令就可以adb remount成功了。

2015-04-23 16:03:49 561

haxm-windows_r05

作者:郭孝星 微博:http://weibo.com/allenwells 邮箱:[email protected] 博客:http://blog.csdn.net/allenwells Github:https://github.com/AllenWells

2015-08-31

Roboto字体源文件

作者:郭孝星 微博:http://weibo.com/allenwells 邮箱:[email protected] 博客:http://blog.csdn.net/allenwells Github:https://github.com/AllenWells

2015-08-24

主题设计源文件

作者:郭孝星 微博:http://weibo.com/allenwells 邮箱:[email protected] 博客:http://blog.csdn.net/allenwells Github:https://github.com/AllenWells

2015-08-24

Android应用开发图样

作者:郭孝星 微博:http://weibo.com/allenwells 邮箱:[email protected] 博客:http://blog.csdn.net/allenwells Github:https://github.com/AllenWells

2015-08-24

平板设备布局模板

作者:郭孝星 微博:http://weibo.com/allenwells 邮箱:[email protected] 博客:http://blog.csdn.net/allenwells Github:https://github.com/AllenWells

2015-08-23

Android移动设备布局模板

作者:郭孝星 微博:http://weibo.com/allenwells 邮箱:[email protected] 博客:http://blog.csdn.net/allenwells Github:https://github.com/AllenWells

2015-08-23

基于监听的事件处理模型

作者:郭孝星 微博:http://weibo.com/allenwells 邮箱:[email protected] 博客:http://blog.csdn.net/allenwells Github:https://github.com/AllenWells

2015-08-19

ImageView及其子类类图

作者:郭孝星 微博:http://weibo.com/allenwells 邮箱:[email protected] 博客:http://blog.csdn.net/allenwells Github:https://github.com/AllenWells

2015-08-19

TextView及其子类类图

作者:郭孝星 微博:http://weibo.com/allenwells 邮箱:[email protected] 博客:http://blog.csdn.net/allenwells Github:https://github.com/AllenWells

2015-08-19

NsdChat工程源码

作者:【郭孝星】http://blog.csdn.net/allenwells 微博:【郭孝星的新浪微博】http://weibo.com/allenwells 邮箱:[email protected] 博客:http://blog.csdn.net/allenwells Github:https://github.com/AllenWells

2015-08-06

Fragment继承体系

作者:【郭孝星】http://blog.csdn.net/allenwells 微博:【郭孝星的新浪微博】http://weibo.com/allenwells 邮箱:[email protected] 博客:http://blog.csdn.net/allenwells Github:https://github.com/AllenWells

2015-07-30

Dalvik虚拟机类加载机制分析图

作者:【郭孝星】http://blog.csdn.net/allenwells 微博:【郭孝星的新浪微博】http://weibo.com/allenwells 邮箱:[email protected] 博客:http://blog.csdn.net/allenwells Github:https://github.com/AllenWells

2015-07-30

android-Ultra-Pull-To-Refresh流程图

作者:【郭孝星】http://blog.csdn.net/allenwells 微博:【郭孝星的新浪微博】http://weibo.com/allenwells 邮箱:[email protected] 博客:http://blog.csdn.net/allenwells Github:https://github.com/AllenWells

2015-07-29

Fragment生命周期演示用例

作者:【郭孝星】http://blog.csdn.net/allenwells 微博:【郭孝星的新浪微博】http://weibo.com/allenwells 邮箱:[email protected] 博客:http://blog.csdn.net/allenwells Github:https://github.com/AllenWells

2015-07-29

ARM指令集详解

写在前面:本篇文章旨在大致介绍下ARM指令集的相关内容,这里也同时提供一个有详细解释和用例的待书签的PDF版本,方便大家查阅。

2015-07-06

【Visio源文件】类加载器的层次结构图

所有Java应用都至少引用java.lang.Object类,也就是在运行的时候,java.lang.Object这个类需要被加载到Java虚拟机中,如果这个加载过程由Java自己的类加载器来完成,则在虚拟机中会存在多个版本的java.lang.Object类,而且这些类是不兼容的,**代理模式就是为了保证Java核心库的类型安全**。

2015-05-29

【Vision源文件】类加载流程图

1. 如果这个类没有被加载和链接,那就先进行加载和链接。 2. 如果这个类存在直接父类,并且这个类还没有初始化(**在一个类加载器中,类只能被初始化一次**),那就先初始化直接父类(不适用于接口)。 3. 加入类中存在的初始化语句(如static变量和static块),那就先执行这些初始化语句。

2015-05-29

【Android4.4.4.4_r1系统源码】OptMain.cpp

17/* 18 * Command-line DEX optimization and verification entry point. 19 * 20 * There are three ways to launch this: 21 * (1) From the VM. This takes a dozen args, one of which is a file 22 * descriptor that acts as both input and output. This allows us to 23 * remain ignorant of where the DEX data originally came from. 24 * (2) From installd or another native application. Pass in a file 25 * descriptor for a zip file, a file descriptor for the output, and 26 * a filename for debug messages. Many assumptions are made about 27 * what's going on (verification + optimization are enabled, boot 28 * class path is in BOOTCLASSPATH, etc). 29 * (3) On the host during a build for preoptimization. This behaves 30 * almost the same as (2), except it takes file names instead of 31 * file descriptors. 32 * 33 * There are some fragile aspects around bootclasspath entries, owing 34 * largely to the VM's history of working on whenever it thought it needed 35 * instead of strictly doing what it was told. If optimizing bootclasspath 36 * entries, always do them in the order in which they appear in the path. 37 */

2015-05-28

【Android4.4.4.4_r1系统源码】DexFile.h

/* * Access .dex (Dalvik Executable Format) files. The code here assumes that * the DEX file has been rewritten (byte-swapped, word-aligned) and that * the contents can be directly accessed as a collection of C arrays. Please * see docs/dalvik/dex-format.html for a detailed description. * * The structure and field names were chosen to match those in the DEX spec. * * It's generally assumed that the DEX file will be stored in shared memory, * obviating the need to copy code and constant pool entries into newly * allocated storage. Maintaining local pointers to items in the shared area * is valid and encouraged. * * All memory-mapped structures are 32-bit aligned unless otherwise noted. */

2015-05-27

【Android4.4.4.4_r1系统源码】DexPrepare.h DexPrepare.cpp

/* * Prepare a DEX file for use by the VM. Depending upon the VM options * we will attempt to verify and/or optimize the code, possibly appending * register maps. * * TODO: the format of the optimized header is currently "whatever we * happen to write", since the VM that writes it is by definition the same * as the VM that reads it. Still, it should be better documented and * more rigorously structured. */

2015-05-27

signapk签名工具

签名APK需要用到signapk.jar工具,将该工具的目录添加到环境变量PATH中,方便在命令行下直接使用。

2015-05-04

Java EE知识体系结构

Java EE知识体系结构,用图解的形式详细讲述了Java EE整体的知识架构。

2015-03-04

VIM用户手册6.3.pdf

VIM用户手册6.3,讲述VIM的各种操作技巧,有需要的童鞋可以参考一下。

2015-03-04

ffmpeg视频编解码教程

ffmpeg视频编解码教程,详细讲解ffmpeg各种结构体的作用,和视频编解码的详细流程。

2015-03-04

ffmpeg-2.4.3.tar.gz

ffmpeg-2.4.3.tar.gz 视频编解码最新底层源码,可编译运行。

2015-03-04

网上订餐客户端源码(可直接导入eclipse运行)

网上订餐客户端源码,下拉刷新,订单管理,可直接导入eclipse运行,需要的同学可以参考一下O(∩_∩)O

2015-02-12

VLC媒体播放器源码(2015最新版可直接在eclipse运行)

VLC媒体播放器源码,2015最新版,含JNI代码,可直接在eclipse中运行。

2015-02-12

搜狐研发部笔试题

搜狐研发部笔试题,C语言相关笔试题目,需要的同学可以参考一下。

2015-02-12

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除