开发者

how to detect if PIN code is required to unlock sim?

There is a "SIM card lock" option in android "setting/Location & security settings" page.

It's necessary to input a PIN code after booting if the option is set.

Is there any programmatic method to detect if PIN is required ? (not开发者_开发技巧 current sim state but the setting option value ex: true/false)


You can use the following class: TelephonyManager http://developer.android.com/reference/android/telephony/TelephonyManager.html

You do not instantiate this class directly; instead, you retrieve a reference to an instance through Context.getSystemService(Context.TELEPHONY_SERVICE)

TelephonyManager manager = (TelephonyManager) Context.getSystemService(Context.TELEPHONY_SERVICE);
int state = manager.getSimState();
if(state == TelephonyManager.SIM_STATE_PIN_REQUIRED || state == TelephonyManager.SIM_STATE_PUK_REQUIRED)
{
         //PIN/PUK is required
}

Following the comments, this is the final version:

TelephonyManager tm = 
(TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);
       Class clazz = Class.forName(tm.getClass().getName());
       Method m = clazz.getDeclaredMethod("getITelephony");
       m.setAccessible(true);
       ITelephony it = (ITelephony) m.invoke(tm);
       if(it.isSimPinEnabled())
       {
                //This should work;
       }


As getSimLockEnabled always returns false for me, i had to find another way to do it.

See https://stackoverflow.com/a/12748638/314089 for the answer.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜