这里的操作都是在windows下,在android SDK安装好之后就可以连接实体手机或者模拟器操作 1、查看连接的手机或者模拟器 adb devices 结果如下: 2、查看某个app的包名和activity adb logcat|find "START"(如果在linux或者apple电脑下,则 ...
分类:
移动开发 时间:
2018-06-12 22:34:54
阅读次数:
766
logcat TestServer:* TestClient:* HelloService:* *:S &CLASSPATH=/mnt/android_fs/TestServer.jar app_process / TestServer &CLASSPATH=/mnt/android_fs/Test ...
分类:
编程语言 时间:
2018-06-09 15:56:48
阅读次数:
193
一、没有apk,应用已经安装到手机或虚拟机中 1.logcat .清除logcat内容,使用命令adb logcat -c .启动logcat,使用命令adb logcat ActivityManager:I *:s .启动要查看的程序, 2.dumpsys (1)启动要查看的程序; (2)命令行输 ...
分类:
移动开发 时间:
2018-06-08 19:26:45
阅读次数:
190
300 550 adb logcat -c adb logcat -s TAG eclipse:查看一个override方法所在父类快捷键:ctrl + o 两次查看一个接口方法的实现 : Ctrl+T adb root adb remount git log --pretty=onelinegit ...
分类:
其他好文 时间:
2018-06-05 21:15:59
阅读次数:
253
Android ADB 常用命令 泛原罪 泛原罪 2016.09.21 00:02* 字数 605 阅读 2912评论 0喜欢 1 [TOC] adb logcat 查看日志 详细内容可参见 ADB Usage Complete / ADB 用法大全 官方文档Listing of logcat Co ...
分类:
移动开发 时间:
2018-05-15 15:54:25
阅读次数:
283
参考博客:https://blog.csdn.net/liao277218962/article/details/50129009 常用logcat命令如下: 输出log到 123.txt adb logcat -v time > 123.txt time"格式 : "日期 时间 优先级 / 标签 ...
分类:
数据库 时间:
2018-05-14 00:10:29
阅读次数:
188
Java传递数据给C例子: public class JNI { static{ System.loadLibrary("passdata"); } //传递两个int类型的变量给C 让C加一下返回来 public native int add(int x, int y); //传递String类型 ...
分类:
编程语言 时间:
2018-05-02 13:22:40
阅读次数:
231
adb devices --查看是否连接手机adb shell monkey 101 --随机101个事件adb logcat | grep START --查看手机安装的包名(cmp=这里是包名)adb shell monkey -p com.android.calculator2 101 --指 ...
分类:
其他好文 时间:
2018-04-30 17:54:13
阅读次数:
125
maven仓库的网址,查询maven的坐标http://mvnrepository.com/search?q=spring-con 选择eclipse的版本http://www.eclipsecolorthemes.org/ 程序员必备十个好用工具https://jingyan.baidu.com/ ...
分类:
Web程序 时间:
2018-04-17 22:23:19
阅读次数:
223
文件夹 文件夹 前言 执行时库层日志库liblog 源代码分析 CC日志写入接口 Java日志写入接口 logcat工具分析 基础数据结构 初始化过程 日志记录的读取过程 前言 该篇文章是我的读书和实践笔记。參考的是《Android系统源代码情景分析》。 执行时库层日志库——liblog Andro ...
分类:
移动开发 时间:
2018-04-15 16:29:44
阅读次数:
1080