このチュートリアルのAndroid
にプッシュ通知アプリケーションを開発しました: Push notification in Android app 。アプリを実行すると、登録ボタンが表示されます。登録ボタンをクリックして、登録が成功すると、デバイスに通知が表示されます。
自分のアプリに含めるにはどうすればよいですか?私のアプリには、XML解析のサンプルアプリが1つあります。ここで新しいアイテムが追加されたら、デバイスに通知メッセージを表示します(新しい注文が表示されます)。ここで自動的に生成されます。
Google Cloud Messaging のデモアプリケーションを投稿しています。
必ずAPIレベルが以上のGoogle APIを使用したAndroid OS 2.2でデモアプリケーションを作成してください
このサービスを使用するには、ユーザーは少なくとも1つのGoogleアカウントにログインする必要があります。
最初に GCMライブラリ を追加する必要があります。
次のように GCMBaseIntentService を拡張するGCMIntentService
という名前のクラスで作成するより:
package com.example.gcmdemo;
import Android.content.Context;
import Android.content.Intent;
import Android.util.Log;
import com.google.Android.gcm.GCMBaseIntentService;
import com.google.Android.gcm.GCMConstants;
public class GCMIntentService extends GCMBaseIntentService {
private static final String TAG = "Push Notification Demo GCMIntentService";
@Override
protected void onError(Context context, String errorId) {
if(GCMConstants.ERROR_ACCOUNT_MISSING.equalsIgnoreCase(errorId)) {
Log.v(TAG, "Error Account Missing");
} else if(GCMConstants.ERROR_AUTHENTICATION_FAILED.equalsIgnoreCase(errorId)) {
Log.v(TAG, "Error Authentication Failed");
} else if(GCMConstants.ERROR_INVALID_PARAMETERS.equalsIgnoreCase(errorId)) {
Log.v(TAG, "Error Invalid Parameters");
} else if(GCMConstants.ERROR_INVALID_SENDER.equalsIgnoreCase(errorId)) {
Log.v(TAG, "Error Invalid Sender");
} else if(GCMConstants.ERROR_PHONE_REGISTRATION_ERROR.equalsIgnoreCase(errorId)) {
Log.v(TAG, "Error Phone Registration Error");
} else if(GCMConstants.ERROR_SERVICE_NOT_AVAILABLE.equalsIgnoreCase(errorId)) {
Log.v(TAG, "Error Service Not Available");
}
}
@Override
protected void onMessage(Context context, Intent intent) {
// App Server Sends message as key value pairs
String value1 = intent.getStringExtra("key1");
String value2 = intent.getStringExtra("key2");
Log.v(TAG, "key1: "+value1 );
Log.v(TAG, "key2: "+value2 );
}
@Override
protected void onRegistered(Context context, String regId) {
Log.v(TAG, "Successfull Registration : "+regId);
}
@Override
protected void onUnregistered(Context context, String regId) {
Log.v(TAG, "Successfully Unregistred : "+regId);
}
@Override
protected String[] getSenderIds(Context context) {
return super.getSenderIds(context);
}
@Override
protected void onDeletedMessages(Context context, int total) {
super.onDeletedMessages(context, total);
}
@Override
protected boolean onRecoverableError(Context context, String errorId) {
return super.onRecoverableError(context, errorId);
}
}
以下のデモアクティビティで登録を確認する方法は次のとおりです。
package com.example.gcmdemo;
import Android.app.Activity;
import Android.os.Bundle;
import Android.util.Log;
import Android.view.Menu;
import com.google.Android.gcm.GCMRegistrar;
public class MainActivity extends Activity {
private static final String TAG = "Push Notification Demo Activity";
private static final String SENDER_ID = "1069713227710";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
GCMRegistrar.checkDevice(this);
GCMRegistrar.checkManifest(this);
final String regId = GCMRegistrar.getRegistrationId(this);
if (regId.equals("")) {
GCMRegistrar.register(this, SENDER_ID);
} else {
Log.v(TAG, "Already registered : "+regId);
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
最後に、デモマニフェスト:
<manifest xmlns:Android="http://schemas.Android.com/apk/res/Android"
package="com.example.gcmdemo"
Android:versionCode="1"
Android:versionName="1.0" >
<uses-sdk
Android:minSdkVersion="8"
Android:targetSdkVersion="8" />
<permission
Android:name="com.example.gcmdemo.permission.C2D_MESSAGE"
Android:protectionLevel="signature" />
<uses-permission Android:name="com.example.gcmdemo.permission.C2D_MESSAGE" />
<!-- App receives GCM messages. -->
<uses-permission Android:name="com.google.Android.c2dm.permission.RECEIVE" />
<!-- GCM connects to Google Services. -->
<uses-permission Android:name="Android.permission.INTERNET" />
<!-- GCM requires a Google account. -->
<uses-permission Android:name="Android.permission.GET_ACCOUNTS" />
<!-- Keeps the processor from sleeping when a message is received. -->
<uses-permission Android:name="Android.permission.WAKE_LOCK" />
<application
Android:icon="@drawable/ic_launcher"
Android:label="@string/app_name"
Android:theme="@style/AppTheme" >
<activity
Android:name=".MainActivity"
Android:label="@string/title_activity_main" >
<intent-filter>
<action Android:name="Android.intent.action.MAIN" />
<category Android:name="Android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
Android:name="com.google.Android.gcm.GCMBroadcastReceiver"
Android:permission="com.google.Android.c2dm.permission.SEND" >
<intent-filter>
<action Android:name="com.google.Android.c2dm.intent.RECEIVE" />
<action Android:name="com.google.Android.c2dm.intent.REGISTRATION" />
<category Android:name="com.example.gcmdemo" />
</intent-filter>
</receiver>
<service Android:name=".GCMIntentService" />
</application>
</manifest>
また、 ここで指定したサードパーティのサーバー側スクリプト が必要です。
FCMを使用したプッシュ通知の送信
GoogleはGoogle Cloud Messaging(GCM)を廃止し、Firebase Cloud Messaging(FCM)である新しいプッシュ通知サーバーを起動しました。 FCMはGCMと同じですが、FCMはモバイルプラットフォーム向けのクロスプラットフォームメッセージングソリューションでもあります
Firebase Cloud Messagingは3種類のメッセージを送信できます( Message types )
1。通知メッセージ
2。データメッセージ
3。通知とデータの両方を含むメッセージ
Firebase Cloud Messaging統合手順:-
1. Firbase Consoleでの新規プロジェクトのセットアップまたはプロジェクトのインポート(https://firebase.google.com/)
2.Firebaseアプリで同じパッケージ名のアプリを追加します。
3.「google-services.json」ファイルを取得し、そのファイルをプロジェクトのアプリフォルダーに配置します。このファイルには、GoogleサービスのすべてのURLとキーが含まれているため、このファイルを変更または編集しないでください。
4.Project for Firebaseに新しいGradle依存関係を追加します。
//app/build.gradle
dependencies {
compile 'com.google.firebase:firebase-messaging:9.6.0'
}
apply plugin: 'com.google.gms.google-services'
5. FCMのアプリ全体で使用するすべての定数値を含むクラスを作成します。
public class Config {
public static final String TOPIC_GLOBAL = "global";
// broadcast receiver intent filters
public static final String REGISTRATION_COMPLETE = "registrationComplete";
public static final String Push_NOTIFICATION = "pushNotification";
// id to handle the notification in the notification tray
public static final int NOTIFICATION_ID = 100;
public static final int NOTIFICATION_ID_BIG_IMAGE = 101;
public static final String SHARED_PREF = "ah_firebase";
}
6.各アプリケーションに固有のfirebase登録IDを受け取るMyFirebaseInstanceIDService.Javaという名前のクラスを作成します。登録IDは、単一のデバイスにメッセージを送信するために使用されます。
public class MyFirebaseInstanceIDService extends FirebaseInstanceIdService {
private static final String TAG = MyFirebaseInstanceIDService.class.getSimpleName();
@Override
public void onTokenRefresh() {
super.onTokenRefresh();
String refreshedToken = FirebaseInstanceId.getInstance().getToken();
// Saving reg id to shared preferences
storeRegIdInPref(refreshedToken);
// sending reg id to your server
sendRegistrationToServer(refreshedToken);
// Notify UI that registration has completed, so the progress indicator can be hidden.
Intent registrationComplete = new Intent(Config.REGISTRATION_COMPLETE);
registrationComplete.putExtra("token", refreshedToken);
LocalBroadcastManager.getInstance(this).sendBroadcast(registrationComplete);
}
private void sendRegistrationToServer(final String token) {
// sending gcm token to server
Log.e(TAG, "sendRegistrationToServer: " + token);
}
private void storeRegIdInPref(String token) {
SharedPreferences pref = getApplicationContext().getSharedPreferences(Config.SHARED_PREF, 0);
SharedPreferences.Editor editor = pref.edit();
editor.putString("regId", token);
editor.commit();
}
}
7. MyFirebaseMessagingService.Javaという名前のサービスクラスをもう1つ作成します。これはfirebaseメッセージを受け取ります。
public class MyFirebaseMessagingService extends FirebaseMessagingService {
private static final String TAG = MyFirebaseMessagingService.class.getSimpleName();
private NotificationUtils notificationUtils;
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
Log.e(TAG, "From: " + remoteMessage.getFrom());
if (remoteMessage == null)
return;
// Check if message contains a notification payload.
if (remoteMessage.getNotification() != null) {
Log.e(TAG, "Notification Body: " + remoteMessage.getNotification().getBody());
handleNotification(remoteMessage.getNotification().getBody());
}
}
private void handleNotification(String message) {
if (!NotificationUtils.isAppIsInBackground(getApplicationContext())) {
// app is in foreground, broadcast the Push message
Intent pushNotification = new Intent(Config.Push_NOTIFICATION);
pushNotification.putExtra("message", message);
LocalBroadcastManager.getInstance(this).sendBroadcast(pushNotification);
// play notification sound
NotificationUtils notificationUtils = new NotificationUtils(getApplicationContext());
notificationUtils.playNotificationSound();
}else{
// If the app is in background, firebase itself handles the notification
}
}
/**
* Showing notification with text only
*/
private void showNotificationMessage(Context context, String title, String message, String timeStamp, Intent intent) {
notificationUtils = new NotificationUtils(context);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
notificationUtils.showNotificationMessage(title, message, timeStamp, intent);
}
/**
* Showing notification with text and image
*/
private void showNotificationMessageWithBigImage(Context context, String title, String message, String timeStamp, Intent intent, String imageUrl) {
notificationUtils = new NotificationUtils(context);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
notificationUtils.showNotificationMessage(title, message, timeStamp, intent, imageUrl);
}
}
8. AndroidManifest.xmlで、これら2つのfirebaseサービスMyFirebaseMessagingServiceおよびMyFirebaseInstanceIDServiceを追加します。
<!-- Firebase Notifications -->
<service Android:name=".service.MyFirebaseMessagingService">
<intent-filter>
<action Android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<service Android:name=".service.MyFirebaseInstanceIDService">
<intent-filter>
<action Android:name="com.google.firebase.INSTANCE_ID_EVENT" />
</intent-filter>
</service>
<!-- ./Firebase Notifications -->
ここで、単純に 最初のメッセージを送信
注:
* 1。 Firebase Cloud Messaging *のGoogleドキュメントを読む
2。Android Firebase Cloud MessagingにGCMクライアントアプリを移行する場合は、次の手順とドキュメントに従ってください(- GCMクライアントアプリの移行 )
3.Androidサンプルチュートリアルとコード( Receive Reengagement Notifications )
個人的に、GCMの代わりに、PushNotificationの Parse という名前の他のライブラリもあることをお勧めします。GoogleCloud Messagingと同じように動作しますが、GCMほど簡単です
Push-NOTIFICATIONのJARファイルと単純な2〜3行のコードをダウンロードするだけです。
このサイトの使用を学ぶには https://parse.com/tutorials/Android-Push-notifications
PHPまたはサーバー側のコードを使用する必要はありません。
デモを見せます
Parse.initialize(this, "YOUR_APP_ID", "YOUR_CLIENT_KEY");
PushService.setDefaultPushCallback(this, YourDefaultActivity.class);
上記のコードから、プッシュ通知を受信するのに十分です
あなたが通知を送信したい場合彼らは素晴らしいUIを提供します彼らが提供するUIの写真を見て