我有一个.Net Maui Blazor应用程序,当在Android上单击按钮时,下一个应用程序应该被带到前台,就像Windows中的Alt-Tab操作一样。我怎么能这么做呢?
nnvyjq4y1#
the Alt-Tab action in Windows是windows平台的快捷方式,但android系统没有提供这样的快捷方式或功能。但是Android提供了Recents screen,如果你想把下一个应用程序带到Android的前台。你可以参考我以前关于Getting the list of running processes in Android OS using Net Maui的答案来得到the next application。然后您可以通过this answer以编程方式启动应用程序。
the Alt-Tab action in Windows
the next application
注意:android.permission.REAL_GET_TASKS权限为signature-level permission。
android.permission.REAL_GET_TASKS
1条答案
按热度按时间nnvyjq4y1#
the Alt-Tab action in Windows
是windows平台的快捷方式,但android系统没有提供这样的快捷方式或功能。但是Android提供了Recents screen,如果你想把下一个应用程序带到Android的前台。你可以参考我以前关于Getting the list of running processes in Android OS using Net Maui的答案来得到
the next application
。然后您可以通过this answer以编程方式启动应用程序。注意:
android.permission.REAL_GET_TASKS
权限为signature-level permission。