android+极光推送,android极光推送

1.倒入sdk开发包。

2.

配置 AndroidManifest.xml

主要步骤为:

复制备注为 "Required" 的部分

将备注为替换包名的部分,替换为当前应用程序的包名

将AppKey替换为在Portal上注册该应用的的Key,例如(9fed5bcb7b9b87413678c407)

3.在application中初始化(在onCreate()中初始化)

/**

* 极光推送初始化

*/

private void setInitJPush() {

// TODO Auto-generated method stub

JPushInterface.setDebugMode(true); // 设置开启日志,发布时请关闭日志

JPushInterface.init(this); // 初始化 JPush

CustomPushNotificationBuilder builder = new CustomPushNotificationBuilder(softApplication, R.layout.customer_notitfication_layout, R.id.icon, R.id.title, R.id.text); // 指定定制的

builder.statusBarDrawable = R.drawable.default_avatar; // 指定最顶层状态栏小图标

builder.layoutIconDrawable = R.drawable.default_avatar; // 指定下拉状态栏时显示的通知图标

JPushInterface.setPushNotificationBuilder(2, builder);

}

4.登陆时设置别名JPushInterface.setAliasAndTags(softApplication, (String) msg.obj, null, mAliasCallback);

private final TagAliasCallback mAliasCallback = new TagAliasCallback() {

@Override

public void gotResult(int code, String alias, Set tags) {

String logs;

switch (code) {

case 0:

logs = "Set tag and alias success";

Log.i(TAG, logs);

break;

case 6002:

logs = "Failed to set alias and tags due to timeout. Try again after 60s.";

Log.i(TAG, logs);

if (NetUtil.isNetAvailable(softApplication)) {

mHandler.sendMessageDelayed(mHandler.obtainMessage(MSG_SET_ALIAS, alias), 1000 * 60);

} else {

Log.i(TAG, "No network");

}

break;

default:

logs = "Failed with errorCode = " + code;

Log.e(TAG, logs);

}

}

};

5.注册广播,实现广播接收器,接收推送消息。

package com.lcworld.stock.mybroadcast;

import org.json.JSONException;

import org.json.JSONObject;

import com.lcworld.stock.mine.MineMessageActivity;

import android.content.BroadcastReceiver;

import android.content.Context;

import android.content.Intent;

import android.os.Bundle;

import android.util.Log;

import cn.jpush.android.api.JPushInterface;

/**

* 自定义接收器

*

* 如果不定义这个 Receiver,则: 1) 默认用户会打开主界面 2) 接收不到自定义消息

*/

public class MyReceiver extends BroadcastReceiver {

private static final String TAG = "JPush";

@Override

public void onReceive(Context context, Intent intent) {

Bundle bundle = intent.getExtras();

Log.d(TAG, "[MyReceiver] onReceive - " + intent.getAction() + ", extras: " + printBundle(bundle));

if (JPushInterface.ACTION_REGISTRATION_ID.equals(intent.getAction())) {

String regId = bundle.getString(JPushInterface.EXTRA_REGISTRATION_ID);

Log.d(TAG, "[MyReceiver] 接收Registration Id : " + regId);

// send the Registration Id to your server...

} else if (JPushInterface.ACTION_MESSAGE_RECEIVED.equals(intent.getAction())) {

Log.d(TAG, "[MyReceiver] 接收到推送下来的自定义消息: " + bundle.getString(JPushInterface.EXTRA_MESSAGE));

// processCustomMessage(context, bundle);

} else if (JPushInterface.ACTION_NOTIFICATION_RECEIVED.equals(intent.getAction())) {

Log.d(TAG, "[MyReceiver] 接收到推送下来的通知");

int notifactionId = bundle.getInt(JPushInterface.EXTRA_NOTIFICATION_ID);

Log.d(TAG, "[MyReceiver] 接收到推送下来的通知的ID: " + notifactionId);

} else if (JPushInterface.ACTION_NOTIFICATION_OPENED.equals(intent.getAction())) {

Log.d(TAG, "[MyReceiver] 用户点击打开了通知");//初始化时定义的Notification

String extras = bundle.getString(JPushInterface.EXTRA_EXTRA);

System.out.println("===extras===" + extras);

JSONObject jsonObject;

try {

jsonObject = new JSONObject(extras);

String type = jsonObject.getString("type");

Intent intent1 = new Intent(context, MineMessageActivity.class);

Bundle bundle2 = new Bundle();

if (type.equals("0")) {// 系统通知

bundle2.putString("type", "0");

bundle2.putString("msg", jsonObject.getString("msg"));

bundle2.putString("date", jsonObject.getString("date"));

intent1.putExtras(bundle2);

intent1.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);

context.startActivity(intent1);

} else if (type.equals("1")) {// 加好友

bundle2.putString("type", "1");

bundle2.putString("msg", jsonObject.getString("msg"));

bundle2.putString("date", jsonObject.getString("date"));

intent1.putExtras(bundle2);

intent1.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);

context.startActivity(intent1);

}

} catch (JSONException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

} else if (JPushInterface.ACTION_RICHPUSH_CALLBACK.equals(intent.getAction())) {

Log.d(TAG, "[MyReceiver] 用户收到到RICH PUSH CALLBACK: " + bundle.getString(JPushInterface.EXTRA_EXTRA));

// 在这里根据 JPushInterface.EXTRA_EXTRA 的内容处理代码,比如打开新的Activity,

// 打开一个网页等..

} else if (JPushInterface.ACTION_CONNECTION_CHANGE.equals(intent.getAction())) {

boolean connected = intent.getBooleanExtra(JPushInterface.EXTRA_CONNECTION_CHANGE, false);

Log.w(TAG, "[MyReceiver]" + intent.getAction() + " connected state change to " + connected);

} else {

Log.d(TAG, "[MyReceiver] Unhandled intent - " + intent.getAction());

}

}

// 打印所有的 intent extra 数据

private static String printBundle(Bundle bundle) {

StringBuilder sb = new StringBuilder();

for (String key : bundle.keySet()) {

if (key.equals(JPushInterface.EXTRA_NOTIFICATION_ID)) {

sb.append("\nkey:" + key + ", value:" + bundle.getInt(key));

} else if (key.equals(JPushInterface.EXTRA_CONNECTION_CHANGE)) {

sb.append("\nkey:" + key + ", value:" + bundle.getBoolean(key));

} else {

sb.append("\nkey:" + key + ", value:" + bundle.getString(key));

}

}

return sb.toString();

}

// send msg to MainActivity

// private void processCustomMessage(Context context, Bundle bundle) {

// if (MainActivity.isForeground) {

// String message = bundle.getString(JPushInterface.EXTRA_MESSAGE);

// String extras = bundle.getString(JPushInterface.EXTRA_EXTRA);

// Intent msgIntent = new Intent(MainActivity.MESSAGE_RECEIVED_ACTION);

// msgIntent.putExtra(MainActivity.KEY_MESSAGE, message);

// if (!ExampleUtil.isEmpty(extras)) {

// try {

// JSONObject extraJson = new JSONObject(extras);

// if (null != extraJson && extraJson.length() > 0) {

// msgIntent.putExtra(MainActivity.KEY_EXTRAS, extras);

// }

// } catch (JSONException e) {

//

// }

//

// }

// context.sendBroadcast(msgIntent);

// }

// }

}