在 React Native 中链接 android os 设置

Linking with android os settings in react native

我正尝试 link 使用 android os settings 页面。

Linking 一起去 Phone Dail 是可行的。

Linking.openURL('tel: +959 XXXXXXXX');

我可以使用 Linking 到 link 与 android os settings 页面类似 android location settings 页面吗?

Linking.openURL 只能打开格式正确的网址。 android settings. You would have to write some native code to do this, and then build a React Native Module 没有标准化的 url 来触发它。

下面是一些示例 Android 代码:

public void openWifiSettings() {
    Intent intent = new Intent(Intent.ACTION_WIFI_SETTINGS);
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivity(intent);
    }
}