0

好的,这是我的问题。我有一个Service接收推送通知的。现在,根据推送通知的内容,如果单击它,它应该启动相应的应用程序。

我收到推送通知或使用服务没有问题,我唯一无法工作的是它打开正确应用程序的部分。

我需要做什么才能从Service? 这必须是动态的,因为将有多个应用程序使用此服务。

如果有人能指出我正确的方向,那就太好了。

PS。我正在使用 GCM 服务,该服务已放入库中,因此我可以在我的多个应用程序中使用它。这是GCMIntentService.onMessage()我需要检查 url 内容然后为通知设置正确意图的函数:

@Override
protected void onMessage(Context arg0, Intent arg1)
{
    Log.i(TAG, "new message = " + arg1.getExtras());

    //Get a reference to the NotificationManager
    String ns = Context.NOTIFICATION_SERVICE;
    NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);

    //Instantiate the Notification      
    int icon = getResourseIdByName(arg0.getApplicationContext().getPackageName(), "drawable", "notification_icon");
    CharSequence tickerText = arg1.getExtras().getString("tickertext");
    long when = System.currentTimeMillis();

    Notification notification = new Notification(icon, tickerText, when);

    //Define the notification's message and PendingIntent 
    Context context = getApplicationContext();
    CharSequence contentTitle = arg1.getExtras().getString("contentTitle");
    CharSequence contentText = arg1.getExtras().getString("contentText");

    Intent notificationIntent = null;

    if(arg1.getExtras().getString("url").isEmpty())
    {
        notificationIntent = new Intent(this, arg1.getExtras().getString("packageName").getClass());
    }
    else
    {
        notificationIntent = new Intent(this, MyWebView.class);
    }

    PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, Intent.FLAG_ACTIVITY_NEW_TASK);

    notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
    notification.flags = Notification.FLAG_AUTO_CANCEL;

    //Pass the Notification to the NotificationManager
    int notificationId = Integer.parseInt(arg1.getExtras().getString("notificationId"));

    mNotificationManager.notify(notificationId, notification);
}
4

2 回答 2

2

可以使用Intents 启动应用程序。您需要构造正确的PendingIntent对象,如下所示:

Intent targetIntent = new Intent(Intent.ACTION_MAIN, null);
targetIntent.addCategory(Intent.CATEGORY_LAUNCHER);
ComponentName cn = new ComponentName("target_app_package_name", "target_activity_class_name");
targetIntent.setComponent(cn);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, targetIntent, Intent.FLAG_ACTIVITY_NEW_TASK);

如果您不知道目标包或目标Activity,可以使用以下代码:

Intent startingIntent = context.getPackageManager().getLaunchIntentForPackage("target_app_package_name");
context.startActivity(startingIntent);
于 2012-10-19T09:53:57.077 回答
1

好吧,看一眼,你似乎可以得到相应应用程序的完整包名。

然后你可以通过包名启动应用程序,像这样

Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage("com.your.packageName.in.String");
startActivity(LaunchIntent); 

编辑:

为此,AFAIK,您只能从您自己的创建该通知的包中启动一个活动。您可以从另一个应用程序包启动一个活动,但是您必须知道该包的活动类名称,而这通常是您不可能知道的。

Intent clickIntent = new Intent(context,Activity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context,0,clickIntent,0);

这是您在创建通知时需要的。

notification.setlatestEventInfo(context, "title","content",pendingIntent);

啊!抱歉评论很糟糕...我似乎无法在评论中添加代码:(

于 2012-10-19T09:56:31.350 回答