随笔分类 - ANDROID
摘要:Mount Manager, Cifs manager :Manage your CIFS/NFS network shareswas working, but the command from the terminal was not.For me anyway, it turned out th...
阅读全文
摘要:When using Tasker, sometimes we want to do some automation on screen e.g. screen or button taps.At present, there are some ways can reach it.1."Input"...
阅读全文
摘要:adb shell as root after device rootedonce device rooted, we must perform "su" before we get root permission in adb shell,this is not convenient in som...
阅读全文
摘要:aapt 是android assert packaging tool的缩写,具体如下:1. 列出apk包的内容aapt l[ist] [-v] [-a] file.{zip,jar,apk}-v 以table形式列出来-a 详细列出内容例如:aapt l ,这个命令就是查看apk内容2. 查看ap...
阅读全文
摘要:折腾了几天,被Android那点儿少得可怜的shell命令折磨的死去活来,终于下定了革命的决心。看一下怎么把渺小的toolbox替换成伟大的busybox吧。先大致描述一下Android系统中的shell程序部分。shell实现分为两部分:一、shell解释器和内置命令源码位于system/core...
阅读全文
摘要:We have to perform the following steps to edit your init.rc successfully:1. Download the BOOT (RamDisk) image from your Android device2. Ex...
阅读全文
摘要:Android devices have a couple of partitions to store different data.The common ones are the recovery, boot, system, data and cache partitions.Almost e...
阅读全文
摘要:功能说明:读取,转换并输出数据。语 法:dd [bs=][cbs=][conv=][count=][ibs=][if=][obs=][of=][seek=][skip=][–help][–version]补充说明:dd可从标准输入或文件读取数据,依指定的格式来转换数据,再输出到文件,设备或标准输出...
阅读全文
摘要:Most of the Android user are using their Android phone just for calls, SMS, browsing and basic apps,But form the development prospective, we should kn...
阅读全文
摘要:One can’t stress enough on the importance of backups and when it comes to tinkering with your Android phone, a backup of your system, recovery and boo...
阅读全文
摘要:ADB (Android Debug Bridge)Android 提供的一个通用的调试工具,借助这个工具,我们可以很好的调试开发的程序,adb.exe在你安装的android的sdk开发包tools(或platform-tools)目录下adb的全称为Android Debug Bridge 调试...
阅读全文
摘要:通过adb把apk安装到系统分区以谷歌拼音为例:GooglePinyin1.4.2.apk提取出so文件libjni_googlepinyinime_4.solibjni_googlepinyinime_latinime_4.sobat批处理脚本内容如下:path "D:\Program Files...
阅读全文
摘要:Run native executable in Android AppDemo†Here's demo application called "Run Native Exe" to:run local UNIX commandsrun native executable downloaded fr...
阅读全文
摘要:要用网络调试Android需要设备已经获取root权限如果手机没有命令行工具,请先在手机端安装终端模拟器,然后在终端输入:$su #stop adbd ...
阅读全文
摘要:Here is My code snippet:Uri mUri = Uri.parse("smsto:+9876543210");Intent mIntent = new Intent(Intent.ACTION_SENDTO, mUri);mIntent.setPackage("com.what...
阅读全文
摘要:Latest SQLite binary for January 2015Well I went through quite a few threads to find an updated, decent sqlite binary. Didn't find any that met that c...
阅读全文
摘要:如何设置Android手机的sqlite3命令环境http://www.cnblogs.com/linjiqin/archive/2011/11/28/2266619.htmlSQLite3 为android所使用的轻量级数据库,小巧方便,用于管理android系统中的各种db文件。SQLite库包...
阅读全文
摘要:SQL是Structured Query Language(结构化查询语言)的缩写。SQL是专为数据库而建立的操作命令集,是一种功能齐全的数据库语言。在使用它时,只需要发出“做什么”的命令,“怎么做”是不用使用者考虑的。SQL功能强大、简单易学、使用方便,已经成为了数据库操作的基础,并且现在几乎所有...
阅读全文
摘要:1、在PC环境下启动一个模拟器(不是手机)2、查看模拟器 /systen/xbin是否有sqlite3命令adb shellcd /system/xbinls3、把模拟器 /system/xbin/sqlite3命令文件从模拟器拷到PC上adb pull /system/xbin/sqlite3 e...
阅读全文
摘要:Android 上SuperUser获取ROOT权限原理解析一、 概述本文介绍了android中获取root权限的方法以及原理,让大家对android 玩家中常说的“越狱”有一个更深层次的认识。二、Root 的介绍1. Root 的目的可以让我们拥有掌控手机系统的权限,比如删除一些system/...
阅读全文