のロックを解除:Android - detect phone unlock event, not screen onは、画面を検出し、私はそこからソリューションを使用
をだから、私の活動の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のマニフェスト:
<?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を使用することを選択した場合、マニフェストに何も追加する必要はありませんか?
ここにManifest.xmlを投稿 – Nikhil
[アンドロイドでロック解除イベントを取得する方法は?](http://stackoverflow.com/questions/20224637/a-way-to-get-unlock-event-in -android) – user392117
代わりにマニフェストに登録すると機能しますか? –