是否可以在 Android 上使用 URL(深度 link)打开设置应用程序?

Is it possible to open Settings App using URL (Deep link) on Android?

可以在 iOS 上这样做:(查找 here

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];

Is there an equivalent on Android?

也许是这样的?

String url = "app-settings:";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);

A​​FAIK 设置没有 URL。

但是,the Settings class 为“设置”应用及其内部的许多屏幕提供专用操作字符串。

因此,要打开“设置”应用的主屏幕,应该是:

startActivity(new Intent(Settings.ACTION_SETTINGS));