在Android中访问SIM卡上的数据

时间:2012-09-23 17:12:41

标签: android

是否可以通过编程方式更改我的Android上的前转号码?我知道这个号码在SIM卡上,所以它可能是安全的。还有什么是S-E-E-K?可以在这里以某种方式使用它吗?

2 个答案:

答案 0 :(得分:1)

无条件转发的键盘代码为: 21 [电话号码]#

String uri = "**21*9999999999#";
Intent intent = new Intent(Intent.ACTION_DIAL);
Uri uri1 = Uri.fromParts("tel", uri, "#"); 
intent.setData(uri1); 
startActivity(intent); 

将'9999999999'替换为电话号码。 http://en.wikipedia.org/wiki/Call_forwarding#Keypad_codes

答案 1 :(得分:1)

基本上,不可能在没有付出大量努力的情况下更改SIM卡上的数据。 How to store android application data on sim card using NFC?

最重要的是,Android已声明应用程序没有对SIM卡的低级别访问权限:http://source.android.com/tech/security/index.html#sim-card-access