本文来自:安卓航班网
$adb uninstall package (移除 APK 应用程序)
adb uninstall com.android.email
$adb shell (进入android shell命令模式)
$ls
$dmesg (查看 Android Linux Kernel 运行信息)
ls - 显示文件目录
cd - 进入目录
rm - 删除文件
mv - 移动文件
mkdir - 产生目录
rmdir - 删除目录
$adb push (复制文件到 SD 卡)
adb push mp3 /sdcard
$adb pull . (从Android 系统下载文件)
adb pull /data/app/com.android.email
$adb logcat (监控模拟器运作记录,以Ctrl + c离开监控模式)
$adb bugreport (产生adb出错报告)
$adb get-state (获得adb模拟器工作状态)
$adb start-server (启动adb服务器)
$adb kill-server (关掉adb服务器)
$adb forward tcp:6100 tcp:7100 (更改模拟器通讯网路)
$adb shell ps -x (显示android模拟器上所有在执行的进程)
$adb version (显示 adb 版本)
$adb help (显示 adb 指令参数)
5、搜索模拟器/设备的实例:
取得当前运行的模拟器/设备的实例的列表及每个实例的状态:
adb devices
6、查看bug报告:
adb bugreport
7、记录无线通讯日志:
一般来说,无线通讯的日志非常多,在运行时没必要去记录,但我们还是可以通过命令,设置记录:
adb shell
logcat -b radio
8、获取设备的ID和序列号:
adb get-product
adb get-serialno
9、访问数据库SQLite3
adb shell
sqlite3
# Emulator 命令行启动参数
emulator -timezone Asia/Taipei (指定时区)
emulator -no-boo-anim (省略开机小机器人启动画面)
emulator -scale auto (调整模拟器视窗大小)
emulator - scale factor (factor: 0.1-3.0)
emulator -dpi-device 300 (更改仿真器的分辨率,default为 165dpi)
emulator -skin (更改模拟器显示模式)
emulator -help-keys (显示键盘快速说明)
emulator -shell (相当于adb shell 功能)
emulator -data data.img (使 /data 目录使用 data.img 的文件空间)
emulator -sdcard sdcard.img (使 /sdcard 目录使用 sdcard.img 的文档空间)
emulator -cache cache.img (浏览器暂存空间)
emulator -wipe-data (使模拟器恢复到原始设置)
emulator -help (显示 emulator 指令参数)
Using SQLite from Shell in Android
命令模式下
#ls 查看即可
原文地址:http://www.apkway.com/forum.php?mod=viewthread&tid=1461&extra=page%3D1