在前台运行布局

时间:2015-08-21 22:09:10

标签: android android-service foreground

我可以通过滑动手势在设备处理的前台运行相对或线性布局吗?我有这个代码用于前台服务,但它只有一个通知作为一个例子,我没有找到一些使用布局的在线。代码如下:

Notification notification = new Notification(R.drawable.icon, getText(R.string.ticker_text),
        System.currentTimeMillis());
Intent notificationIntent = new Intent(this, ExampleActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
notification.setLatestEventInfo(this, getText(R.string.notification_title),
        getText(R.string.notification_message), pendingIntent);
startForeground(ONGOING_NOTIFICATION_ID, notification);

1 个答案:

答案 0 :(得分:1)

您只需使用透明窗口创建活动即可。这里给出了一个很好的例子:How do I create a transparent Activity on Android?

因此,当它启动时,它会出现在每个应用程序的上方,您可以实现所需的每个布局。