Android“设置/位置和安全设置”页面中有一个“SIM卡锁定”选项。
如果设置了此选项,则需要在启动后输入pin代码。
是否有任何编程方法来检测是否需要pin?(不是当前SIM状态,而是设置选项值ex:true/false)

最佳答案

您可以使用以下类:
电话管理员
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;
       }

关于android - 如何检测是否需要PIN码才能解锁SIM卡?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5322291/

10-12 01:15