检测屏幕解锁

Detect screen unlock

我使用了那里的解决方案:Android - detect phone unlock event, not screen on

所以,我的 activity onCreate:

@Override
protected void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    registerReceiver(
       new PhoneUnlockedReceiver(), new IntentFilter("android.intent.action.USER_PRESENT")
    );
}

我的接收器class:

public class PhoneUnlockedReceiver extends BroadcastReceiver
{
    @Override
    public void onReceive(Context context, Intent intent)
    {
        KeyguardManager keyguardManager = 
            (KeyguardManager)context.getSystemService(Context.KEYGUARD_SERVICE);
        if (keyguardManager.isKeyguardSecure())
        {
            Toast.makeText(context, "Screen unlocked", Toast.LENGTH_LONG).show();
        }
    }
}

但它不起作用,我的 onReceive 方法从未被调用过。有什么想法吗?

我的Android清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.example.michal.popupmenu"
          xmlns:android="http://schemas.android.com/apk/res/android">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>

                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
    </application>

</manifest>

据我所知,如果我选择使用registerReceiver,就不需要添加任何清单,对吗?

As far as I know, there is no need to add anything to manifest if I choose to use registerReceiver, right?

错了。在清单中注册接收者的优势在于,当 Intent 被触发时,它不需要您的应用程序 运行。

因此,当用户解锁屏幕时,您的应用可能未激活,因此没有 registerReceiver() 被调用,因此您的接收器没有反应。

在您的清单中添加接收器,它将起作用。

抱歉,谁能解释一下函数: keyguardManager.isKeyguardSecure()不设置PIN/pattern/password时总是returnfalse,设置PIN/pattern/password时returntrue虽然屏幕是lock/unlock。 那么上面的代码怎么会 运行:

if (keyguardManager.isKeyguardSecure())
        {
            Toast.makeText(context, "Screen unlocked", Toast.LENGTH_LONG).show();
        }

谢谢。