0

在前台启动服务时,我仍然感到非常困惑。

目前:我有一个在后台启动服务以对传感器数据+gps 数据执行统计的活动。它不断被杀死,所以我在前台启动它。工作正常。但是,当我触摸状态栏中的通知图标时,它似乎开始了一个新活动(我在 Pending Intent 中做了说明)。

所以简而言之,我仍然对整个事情感到困惑。我想要一个在前台启动服务的活动,当您单击通知栏时,它会将启动该服务的现有活动带到前面。

这是活动中的一些代码(当前将 PendingIntent 设置为 null):

private ServiceConnection mConnection = new ServiceConnection() {
     public void onServiceConnected(ComponentName className, IBinder service) {
        // This is called when the connection with the service has been
        // established, giving us the service object we can use to
        // interact with the service. Because we have bound to a explicit
        // service that we know is running in our own process, we can
        // cast its IBinder to a concrete class and directly access it.

        cycleDataService = ((CycleDataProService.LocalBinder) service)
                .getService();
        //Todo the notification bullshaite here...
        String ns = Context.NOTIFICATION_SERVICE;
        NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
        int icon = R.drawable.icon;
        CharSequence tickerText = "Hello";
        long when = System.currentTimeMillis();
        Notification notification = new Notification(icon, tickerText, when);
        Context context = getApplicationContext();
        CharSequence contentTitle = "My notification";
        CharSequence contentText = "Hello World!";          
        //Intent notificationIntent = new Intent(cycleDataService, CycleDataProService.class);
        //PendingIntent contentIntent = PendingIntent.getActivity(context, 0, myOwnIntent, PendingIntent.FLAG_UPDATE_CURRENT);
        PendingIntent pi = PendingIntent.getActivity(context, 0, null, 0);

        //PendingIntent contentIntent = PendingIntent.getActivity(context, 0, , 0);
        notification.setLatestEventInfo(context, contentTitle, contentText, pi);
        mNotificationManager.notify(HELLO_ID, notification);
        cycleDataService.startForeground(HELLO_ID, notification);
        /*cycleDataService.startService(new Intent(cycleDataService,
                CycleDataProService.class));*/
        serviceIsRunning = true;
        // Tell the user about this for our demo.
        // Toast.makeText(Binding.this, R.string.local_service_connected,
        // Toast.LENGTH_SHORT).show();
    }
4

2 回答 2

2

使用这种方式:

Intent notificationIntent = new Intent(context, YourActivity.class);
    PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
    notification.contentIntent = contentIntent;
    notification.setLatestEventInfo(context, "title", null, contentIntent);
于 2011-08-10T12:20:02.853 回答
0

如果您希望您的活动继续进行而不是重新开始,请使用 FLAG_ACTIVITY_SINGLE_TOP。

Intent notificationIntent = new Intent(context, YourActivity.class);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
notification.contentIntent = contentIntent;
notification.setLatestEventInfo(context, "title", null, contentIntent);
于 2014-12-22T23:51:58.760 回答