当前位置: 编程技术>移动开发
本页文章导读:
▪程序装配apk 程序安装apk
Intent i = new Intent(Intent.ACTION_VIEW);
String filePath = "/sdcard/XXX.apk";
i.setDataAndType(Uri.parse("file://" + filePath),"application/vnd.android.package-archive");
context.startActivity(i);
......
▪ 反编译Apk中Manifest资料 反编译Apk中Manifest文件
反编译Apk中Manifest文件
在apk中的AndroidManifest.xml是经过压缩的,可以通过“AXMLPrinter2”工具解开,具体命令为: java -jar AXMLPrinter2.jar AndroidManifest.xml
下载地址:.........
▪ 透过ContactsContract类获取电话号码的改变 通过ContactsContract类获取电话号码的改变
在2.0版本之前,获取通讯录中的联系人及其电话号码的方式如下:
String string = "";
super.onCreate(savedInstanceState);
ContentResolver cr = getConten.........
[1]程序装配apk
来源: 互联网 发布时间: 2014-02-18
程序安装apk
Intent i = new Intent(Intent.ACTION_VIEW);
String filePath = "/sdcard/XXX.apk";
i.setDataAndType(Uri.parse("file://" + filePath),"application/vnd.android.package-archive");
context.startActivity(i);
[2] 反编译Apk中Manifest资料
来源: 互联网 发布时间: 2014-02-18
反编译Apk中Manifest文件
反编译Apk中Manifest文件
在apk中的AndroidManifest.xml是经过压缩的,可以通过“AXMLPrinter2”工具解开,具体命令为: java -jar AXMLPrinter2.jar AndroidManifest.xml
下载地址:http://code.google.com/p/android4me/downloads/detail?name=AXMLPrinter2.zip&can=2&q=
1 楼
lenomon
2012-04-07
看看这个,项目中会碰到的。JAVA使用AXMLPrinter获取APK中Androidmanifest.xml信息 android
[3] 透过ContactsContract类获取电话号码的改变
来源: 互联网 发布时间: 2014-02-18
通过ContactsContract类获取电话号码的改变
在2.0版本之前,获取通讯录中的联系人及其电话号码的方式如下:
但是在2.0及之后的版本中,获取联系人的方式不变,但是电话号码的方式发生改变, 具体代码如下:
可见,在2.0之后的版本中要获取手机号码就只能通过先取得联系人ID然后再取得联系人电话号码, 而且号码可能不止一个.
在2.0版本之前,获取通讯录中的联系人及其电话号码的方式如下:
String string = ""; super.onCreate(savedInstanceState); ContentResolver cr = getContentResolver(); Cursor cursor = cr.query(ContactsContract.Contacts.CONTENT_URI, null, null, null, null); while (cursor.moveToNext()) { int nameFieldColumnIndex = cursor.getColumnIndex(PhoneLookup.DISPLAY_NAME); String contact = cursor.getString(nameFieldColumnIndex); int numberFieldColumnIndex = cursor.getColumnIndex(PhoneLookup.NUMBER); String number = cursor.getString(numberFieldColumnIndex); string += (contact+":"+number+"\n"); }
但是在2.0及之后的版本中,获取联系人的方式不变,但是电话号码的方式发生改变, 具体代码如下:
String string = ""; super.onCreate(savedInstanceState); ContentResolver cr = getContentResolver(); Cursor cursor = cr.query(ContactsContract.Contacts.CONTENT_URI, null, null, null, null); while (cursor.moveToNext()) { int nameFieldColumnIndex = cursor.getColumnIndex(PhoneLookup.DISPLAY_NAME); String contact = cursor.getString(nameFieldColumnIndex); string += contact + ":"; String contactId = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts._ID)); Cursor phone = cr.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, ContactsContract.CommonDataKinds.Phone.CONTACT_ID+"="+contactId, null, null); while (phone.moveToNext()) { int numberFieldColumnIndex = phone.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER); String strPhoneNumber = phone.getString(numberFieldColumnIndex); string += " " + strPhoneNumber; } string += "\n"; phone.close(); } cursor.close();
可见,在2.0之后的版本中要获取手机号码就只能通过先取得联系人ID然后再取得联系人电话号码, 而且号码可能不止一个.
最新技术文章: