我想从Intent
. 我知道以编程方式它是这样的
Intent viewIntent = new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivity(viewIntent);
但我需要从Preference
. 我试试这样
<Preference
android:title="@string/pref_title" >
<intent android:action="android.settings.ACTION_LOCATION_SOURCE_SETTINGS" />
</Preference>
但它不起作用,我总是得到一个ActivityNotFoundException
. 如何从 XML Intent 启动该系统位置设置?