16 lines
707 B
Java
16 lines
707 B
Java
|
package com.example.childguard;
|
||
|
|
||
|
import android.content.BroadcastReceiver;
|
||
|
import android.content.Context;
|
||
|
import android.content.Intent;
|
||
|
|
||
|
public class NotificationReceiver extends BroadcastReceiver {//通知をクリックしたときにアプリを起動する処理
|
||
|
@Override
|
||
|
public void onReceive(Context context, Intent intent) {
|
||
|
if (intent.getAction() != null && intent.getAction().equals("OPEN_ACTIVITY")) {// 通知がクリックされたときの処理
|
||
|
Intent openIntent = new Intent(context, MainActivity.class); // MainActivityを起動
|
||
|
openIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||
|
context.startActivity(openIntent);
|
||
|
}
|
||
|
}
|
||
|
}
|