如何检测解锁SIM卡是否需要PIN码?

时间:2011-03-16 07:38:48

标签: android sim-card

Android“设置/位置和安全设置”页面中有一个“SIM卡锁定”选项。

如果设置了选项,则必须在启动后输入PIN码。

是否有任何编程方法可以检测是否需要PIN? (不是当前的sim状态,而是设置选项值ex:true / false)

2 个答案:

答案 0 :(得分:1)

您可以使用以下课程: TelephonyManager http://developer.android.com/reference/android/telephony/TelephonyManager.html

您不直接实例化此类;相反,您通过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
}

在评论之后,这是最终版本:

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;
       }

答案 1 :(得分:0)

因为getSimLockEnabled总是为我返回false,所以我必须找到另一种方法。

请参阅https://stackoverflow.com/a/12748638/314089了解答案。