小编典典

从本机后台服务启动屏幕

flutter

我有一个简单的Flutter应用,可使用来启动本机后台服务MethodChannelBasicMessageChannel<String>当捕获到特定的本机信息时,此本机后台服务会通知我的Flutter应用用来显示文本。当我的应用程序处于前台时,所有这些都可以完美地工作。当其他应用程序处于前台时,如果不切换到我的应用程序,我将看不到文本。

我希望即使其他应用程序在前台运行,我的本机服务也可以显示特定的Flutter屏幕。

可以认为它对用户不友好,但这是至关重要的信息。

任何建议或解决方案都将受到欢迎!

注意:本机服务目前仅在Java for Android中可用,我在C#上用于IOS方面。


阅读 331

收藏
2020-08-13

共1个答案

小编典典

在Android上,您需要显示高优先级通知。这将显示下拉通知面板,该面板将出现在锁定屏幕或其他应用程序上方。由于您已经在使用本机代码,因此您可以在此处创建此通知,或向Dart端发送消息(使用时,使用MethodChannel),在此它可以使用flutter_local_notifications插件来显示它。当用户单击通知时,您的Flutter应用程序将显示在前台。在Java中,您可以使用类似于以下代码:

// Create an intent which triggers the fullscreen notification
Intent intent = new Intent(Intent.ACTION_MAIN, null);
intent.setAction("SELECT_NOTIFICATION");
Class mainActivityClass = getMainActivityClass(context);
intent.setClass(context, mainActivityClass);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 1, intent, PendingIntent.FLAG_UPDATE_CURRENT);

// Build the notification as an ongoing high priority item to ensures it will show as
// a heads up notification which slides down over top of the current content.
final Notification.Builder builder = new Notification.Builder(context, CHANNEL_ID);
builder.setOngoing(true);

// Set notification content intent to take user to fullscreen UI if user taps on the
// notification body.
builder.setContentIntent(pendingIntent);

// Set full screen intent to trigger display of the fullscreen UI when the notification
// manager deems it appropriate.
builder.setFullScreenIntent(pendingIntent, true);

// Setup notification content.
int resourceId = context.getResources().getIdentifier("app_icon", "drawable", context.getPackageName());
builder.setSmallIcon(resourceId);
builder.setContentTitle("Your notification title");
builder.setContentText("Your notification content.");

MyPlugin.notificationManager().notify(someId, builder.build());

然后,对于Android 8.1或更高版本,将以下内容添加到您的MainActivity类中,该类位于android / app / src /
main / java / packageName /文件夹下

GeneratedPluginRegistrant.registerWith(this);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O_MR1) {
  setShowWhenLocked(true);
  setTurnScreenOn(true);
}

(即使屏幕被锁定,这也会显示Flutter应用程序。)

Flutter只有一个活动,因此上面的代码会将Flutter活动带到前台(请注意,您并不总是看到通知,但有时会看到该通知-
如果将其设置为autoCancel然后触摸它将清除它)。由您决定在Flutter中构建正确的屏幕,您可以在发送通知时执行此操作。使用Navigator.push或等效按钮来更改Flutter显示的页面。

2020-08-13