如何将Android中的通知消息更改为本地化? 我只想更改从Urban AirShip获得的信息,然后才能在通知栏上显示?
答案 0 :(得分:7)
您可以使用此方法:PushManager.shared().setNotificationBuilder(null);
并使用SDK中的Android通知发送您自己的通知
答案 1 :(得分:0)
是的,您可以在收到来自Urban AirShip的消息后修改消息,以便在应用中进行内部使用,但无法在通知栏中显示已修改的消息。
您可以查看 IntentReceiver
中的消息public class IntentReceiver extends BroadcastReceiver {
private static final String logTag = "Hey";
@Override
public void onReceive(Context context, Intent intent) {
Log.i(logTag, "Received intent: " + intent.toString());
String action = intent.getAction();
if (action.equals(PushManager.ACTION_PUSH_RECEIVED)) {
int id = intent.getIntExtra(PushManager.EXTRA_NOTIFICATION_ID, 0);
Log.v(logTag, "Received push notification. Alert: " + intent.getStringExtra(PushManager.EXTRA_ALERT)
+ ". Payload: " + intent.getStringExtra(PushManager.EXTRA_STRING_EXTRA) + ". NotificationID="+id);
//can get your message here
} else if (action.equals(PushManager.ACTION_NOTIFICATION_OPENED)) {
Log.v(logTag, "User clicked notification. Message: " + intent.getStringExtra(PushManager.EXTRA_ALERT)+ ".Payload:" + intent.getStringExtra("PushManager.EXTRA_STRING_EXTRA"));
Intent launch = new Intent(Intent.ACTION_MAIN);
UAirship.shared().getApplicationContext().startActivity(launch);
} else if (action.equals(PushManager.ACTION_REGISTRATION_FINISHED)) {
Log.i(logTag, "Registration complete. APID:" + intent.getStringExtra(PushManager.EXTRA_APID)
+ ". Valid: " + intent.getBooleanExtra(PushManager.EXTRA_REGISTRATION_VALID, false));
}
}
}
答案 2 :(得分:0)
我找到了解决方案,它是一种肮脏的解决方案,但是我知道我需要使用它。 在收到Urban AirShip的通知后,我取消了所有内容并发送了我自己的更改信息。
答案 3 :(得分:0)
我阅读了答案并提出了一个综合解决方案。
您想要禁用UrbanAirship的默认通知处理程序。如果您这样做,它将无法生成并向您显示通知。
PushManager.shared().setNotificationBuilder(null);
(使用David T的建议)
您想构建自己的通知。这可以在IntentReceiver
内完成。 This链接可以解决问题。
希望这有助于其他人。
答案 4 :(得分:0)
请使用该代码停用Urban Airship的通知,覆盖BasicPushNotificationBuilder:
BasicPushNotificationBuilder nb = new BasicPushNotificationBuilder() {
@Override
public Notification buildNotification(String alert,
Map<String, String> extras) {
return null;
}
};
// Disable notifications
PushManager.shared().setNotificationBuilder(nb);