gpt4 book ai didi

dart - 如何使用 android_intent 通过 flutter 打开位置设置

转载 作者:IT老高 更新时间:2023-10-28 12:39:29 24 4
gpt4 key购买 nike

如何使用 android_intent 或 url_launcher 打开如下图所示的位置设置?

enter image description here

我尝试了一些方法,但没有奏效:

例子:

final AndroidIntent intent = new AndroidIntent(
action: 'action_view',
package: 'android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS'
);
intent.launch();

最佳答案

你可以使用android_intent包但是 Action 不正确,你必须使用这个:

    final AndroidIntent intent = new AndroidIntent(
action: 'android.settings.LOCATION_SOURCE_SETTINGS',);
intent.launch();

引用:https://developer.android.com/reference/android/provider/Settings.html#ACTION_LOCATION_SOURCE_SETTINGS

关于dart - 如何使用 android_intent 通过 flutter 打开位置设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52886232/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com