gpt4 book ai didi

java - 检测屏幕解锁

转载 作者:行者123 更新时间:2023-11-30 01:01:00 25 4
gpt4 key购买 nike

我使用了那里的解决方案: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")
);
}

还有我的接收器类:

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 list :

<?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,就不需要添加任何 list ,对吧?

最佳答案

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

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

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

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

关于java - 检测屏幕解锁,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39407265/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com