解决Andorid调试ADB端口占用问题 Android
解决ADB端口占用问题
方式一
5037为adb默认端口,若5037端口被占用,
查看占用端口的进程PID
C:Userswwx229495>netstat -aon|findstr 5037
TCP 127.0.0.1:5037
标签: android
安卓 属性动画 ValueAnimator ObjectAnimator 源码分析 关键处 Android
属性动画 是 3.0后面的, —-实际上, 这是因为 谷歌 把这个 nineold开源框架 给纳入到 sdk 而己. —-但为了 支持 3.0之前的版本, 我们估计还是得 使用这个开源框架的. 这里对 属性动画 源码的分析, 并不打算...
标签: android
android轻量级开源缓存框架——ASimpleCache(ACache)源码分析 Android
转载请注明出处:http://blog.csdn.net/zhoubin1992/article/details/46379055 ASimpleCache框架源码链接 https://github.com/yangfuhai/ASimpl...
标签: android
Android 四种点击事件 Android
Android 四种点击事件xml文件代码如下:(1--3 均可用)<Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height=
标签: android
android 自定义view之(一) Creating a View Class Android
Creating a View Class
A well-designed custom view is much like any other well-designed class. It encapsulates a specific set of functionality with an easy to use interface, it uses CPU and memory eff
标签: android
AndroidAnnotations框架Eclipse下的配置 Android
AndroidAnnotations是一个开源框架,利用注解方式来简化代码结构,提高开发效率。因为最近有个项目使用了该框架,就记录一下Eclipse下的配置流程。
标签: android
Android之Window Android
window表示的是一个抽象窗口类,该类只是一个抽象窗口类,其具体的唯一实现类是PhoneWindow类。Window对象的获取通过在Activity中调用getWindow()方法获取到Window对象;该类定义了一个CallBack接口...
标签: android
Android虚拟机学习总结Dalvik虚拟机进程和线程的创建过程分析 Android
Dalvik虚拟机在调用一个成员函数的时候,如果发现该成员函数是一个JNI方法,那么就会直接跳到它的地址去执行。也就是说,JNI方法是直接在本地操作系统上执行的,而不是由Dalvik虚拟机解释器执行。由此也可看出,JNI方法是Android...
标签: android
Android开发中工具类的介绍 Android
Android开发中常用的工具类详细解释
主要介绍总结的Android开发中常用的工具类,大部分同样适用于Java。
目前包括HttpUtils、DownloadManagerPro、ShellUtils、Pac
标签: android
Android JUnit Test Android
android debug , junit test , log,这几个在开发中经常要用到的,需要掌握一下 。 关于Android JUnit Test在eclipse下的配置 AndroidManifest.xml中写两个 1 appl...
标签: android