gpt4 book ai didi

android - 我无法在 Android 中从 GCM onMessage 打开对话框

转载 作者:太空宇宙 更新时间:2023-11-03 11:59:22 25 4
gpt4 key购买 nike

当使用谷歌云消息传递向我的 android 应用程序发送消息时,我无法弄清楚如何打开一个是或否对话框(如 javasrcript 确认框),如果他们点击是或什么都不做,则在浏览器中打开一个网站如果他们打不。

我已经花了太多时间,不想向您展示这个基本代码而没有应该在末尾的失败代码,但我只是没有想法并且尝试了太多我在网上找到的示例变体。我怀疑他们失败了,要么是因为我使用了错误的上下文,要么是因为我试图从这个服务类中做到这一点。

public class GCMIntentService extends GCMBaseIntentService {
@Override
protected void onMessage( Context myContext, Intent intent ) {
// TODO Auto-generated method stub
Log.i( LOG_TAG, "GCMIntentService onMessage called" );
Log.i( LOG_TAG, "Message is: " + intent.getStringExtra( "data" ) );
JSONObject o = API.getJSONObj(intent.getStringExtra( "data" ));
String URL = "";
String message = "";
try {
URL = o.getString("URL");
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
message = o.getString("message");
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

/* Code to open dialog or website goes here */

最佳答案

每次收到通知时都会调用 onMessage 方法。要打开通知对话框,您可以在 onMessage 中启动另一个 Activity ,并将您的代码(用于对话框)放入该 Activity 中。或者您也可以将其设置为通知。像这样:-

public class GCMIntentService extends GCMBaseIntentService
{
@Override
protected void onMessage( Context myContext, Intent intent)
{
<your code>
//if you want to show any dialog directly.
Intent i = new Intent(myContext,<your Activity.class>);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
i.putExtra("message", message);
myContext.startActivity(i);

//if you want to show message through notification.
NotificationManager notificationManager = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(R.drawable.notification_icon,arg1.getStringExtra("message"), when);
String title = context.getString(R.string.app_name);
Intent notificationIntent = new Intent(context,<Your Activity>.class);
// set intent so it does not start a new activity
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent intent = PendingIntent.getActivity(context, 0,notificationIntent, 0);
notification.setLatestEventInfo(context, title, arg1.getStringExtra("message"), intent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notificationManager.notify(0, notification);
}
}

如果这对您和 Marry Christmas 有帮助,请告诉我 :-)。

关于android - 我无法在 Android 中从 GCM onMessage 打开对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14017176/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com