Android
 Computer >> コンピューター >  >> プログラミング >> Android

Androidアプリが閉じられたときに通知を送信する方法

はじめに

このチュートリアルでは、Androidアプリが閉じられた(バックグラウンドに移行・終了した)タイミングで通知を送信する方法を解説します。アプリのonStop()メソッドでServiceを起動し、Timerを使って定期的に通知を表示する仕組みを、ステップごとのサンプルコードとともに紹介します。

ステップ1:新規プロジェクトの作成

まず、Android Studioで新しいプロジェクトを作成します。メニューから「File」⇒「New Project」を選択し、必要な項目をすべて入力してプロジェクトを作成してください。

ステップ2:レイアウトファイルの作成

res/layout/activity_main.xmlに以下のコードを追加します。ここでは、アプリを閉じて通知を確認するためのボタンを1つ配置しています。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="https://schemas.android.com/apk/res/android"
    xmlns:tools="https://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="16dp"
    tools:context=".MainActivity">

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:onClick="closeApp"
        android:text="close App for notification" />

</RelativeLayout>

ステップ3:MainActivityの実装

src/MainActivity.javaに以下のコードを追加します。ポイントはonStop()メソッドです。Activityが画面上から見えなくなったとき(ホームボタン押下やアプリ終了時など)に呼び出され、ここで通知用のServiceを開始します。

package app.tutorialspoint.com.notifyme;

import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;

public class MainActivity extends AppCompatActivity {

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

    @Override
    protected void onStop() {
        super.onStop();
        startService(new Intent(this, NotificationService.class));
    }

    public void closeApp(View view) {
        finish();
    }
}

ステップ4:NotificationServiceの実装

src/NotificationService.javaに以下のコードを追加します。このServiceはTimerとHandlerを組み合わせて一定間隔ごとに通知を生成します。また、Android 8.0(APIレベル26)以降では通知チャンネルの作成が必須のため、OSバージョンを判定してチャンネルを作成しています。

package app.tutorialspoint.com.notifyme;

import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.Service;
import android.content.Intent;
import android.os.Handler;
import android.os.IBinder;
import android.support.v4.app.NotificationCompat;
import android.util.Log;

import java.util.Timer;
import java.util.TimerTask;

public class NotificationService extends Service {

    public static final String NOTIFICATION_CHANNEL_ID = "10001";
    private final static String default_notification_channel_id = "default";
    Timer timer;
    TimerTask timerTask;
    String TAG = "Timers";
    int Your_X_SECS = 5;

    @Override
    public IBinder onBind(Intent arg0) {
        return null;
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        Log.e(TAG, "onStartCommand");
        super.onStartCommand(intent, flags, startId);
        startTimer();
        return START_STICKY;
    }

    @Override
    public void onCreate() {
        Log.e(TAG, "onCreate");
    }

    @Override
    public void onDestroy() {
        Log.e(TAG, "onDestroy");
        stopTimerTask();
        super.onDestroy();
    }

    // TimerTask内で処理を実行できるようHandlerを使用します
    final Handler handler = new Handler();

    public void startTimer() {
        timer = new Timer();
        initializeTimerTask();
        timer.schedule(timerTask, 5000, Your_X_SECS * 1000); //
    }

    public void stopTimerTask() {
        if (timer != null) {
            timer.cancel();
            timer = null;
        }
    }

    public void initializeTimerTask() {
        timerTask = new TimerTask() {
            public void run() {
                handler.post(new Runnable() {
                    public void run() {
                        createNotification();
                    }
                });
            }
        };
    }

    private void createNotification() {
        NotificationManager mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(getApplicationContext(), default_notification_channel_id);
        mBuilder.setContentTitle("My Notification");
        mBuilder.setContentText("Notification Listener Service Example");
        mBuilder.setTicker("Notification Listener Service Example");
        mBuilder.setSmallIcon(R.drawable.ic_launcher_foreground);
        mBuilder.setAutoCancel(true);
        if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
            int importance = NotificationManager.IMPORTANCE_HIGH;
            NotificationChannel notificationChannel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, "NOTIFICATION_CHANNEL_NAME", importance);
            mBuilder.setChannelId(NOTIFICATION_CHANNEL_ID);
            assert mNotificationManager != null;
            mNotificationManager.createNotificationChannel(notificationChannel);
        }
        assert mNotificationManager != null;
        mNotificationManager.notify((int) System.currentTimeMillis(), mBuilder.build());
    }
}

ステップ5:AndroidManifest.xmlの編集

AndroidManifest.xmlに以下のコードを追加します。Serviceを宣言し、振動の権限(VIBRATE)も設定しておきましょう。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="https://schemas.android.com/apk/res/android"
    package="app.tutorialspoint.com.notifyme">

    <uses-permission android:name="android.permission.VIBRATE" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        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>

        <service
            android:name=".NotificationService"
            android:label="@string/app_name">
            <intent-filter>
                <action
                    android:name="app.tutorialspoint.com.notifyme.NotificationService" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </service>

    </application>

</manifest>

アプリの実行と動作確認

それでは、アプリケーションを実行してみましょう。ここでは、実際のAndroid端末をパソコンに接続しているものとして説明します。Android Studioからアプリを実行するには、プロジェクト内のアクティビティファイルをいずれか開き、ツールバーの「Run」アイコンをクリックします。デバイス選択ダイアログで接続したモバイル端末を選択すると、端末にアプリの初期画面が表示されます。

画面中央のボタンをタップしてアプリを閉じると、Serviceが起動し、約5秒ごとに通知が届くことを確認できます。なお、Android 8.0以降の端末では、初回起動時にアプリの通知が許可されているかもあわせて確認してください。

  1. Android Studio完全入門ガイド:インストールからアプリ公開まで初心者向けに解説

    Android Studioは、Androidアプリ開発のためのGoogle公式統合開発環境(IDE)です。IntelliJをベースとしており、Python開発者の間で人気の高いPyCharmと同じコードエディタを採用しています。 本記事では、Android Studioを初めて使う方向けに、インストールからアプリ公開までの基本操作をわかりやすく解説します。 Android Studioのインストール手順 まずは公式サイトからダウンロードしましょう。執筆時点では、十分なテストが完了しているバージョン3.3のダウンロードをおすすめします。それ以上のバージョンには新機能が追加されていますが、多く

  2. WhatsAppがAndroidスマートフォンで最高の「自分宛てメモ」アプリである理由

    WhatsAppは最近、新機能を頻繁に導入していることで話題になっています。受信者が一度見た画像を自動的に削除する「View Once」機能や、同じWhatsAppアカウントでサインインできるデバイス数を4台まで増やす機能などがその例です。しかし今回は、長い間存在しながら一度も公式に宣伝されてこなかった隠れた機能——「WhatsAppで自分自身とチャットする」方法についてご紹介します。WhatsAppのライバルアプリであるSignalやTelegramには、「ノート・トゥ・セルフ(Note to Self)」と呼ばれる特別な機能があり、自分自身とチャットが可能です。つまり、メッセージ、画像、音