Add a PRIVACY_SETTINGS action to launch the new Privacy settings screen.
This commit is contained in:
@ -118785,6 +118785,17 @@
|
|||||||
visibility="public"
|
visibility="public"
|
||||||
>
|
>
|
||||||
</field>
|
</field>
|
||||||
|
<field name="ACTION_PRIVACY_SETTINGS"
|
||||||
|
type="java.lang.String"
|
||||||
|
transient="false"
|
||||||
|
volatile="false"
|
||||||
|
value=""android.settings.PRIVACY_SETTINGS""
|
||||||
|
static="true"
|
||||||
|
final="true"
|
||||||
|
deprecated="not deprecated"
|
||||||
|
visibility="public"
|
||||||
|
>
|
||||||
|
</field>
|
||||||
<field name="ACTION_QUICK_LAUNCH_SETTINGS"
|
<field name="ACTION_QUICK_LAUNCH_SETTINGS"
|
||||||
type="java.lang.String"
|
type="java.lang.String"
|
||||||
transient="false"
|
transient="false"
|
||||||
|
@ -147,6 +147,20 @@ public final class Settings {
|
|||||||
public static final String ACTION_SECURITY_SETTINGS =
|
public static final String ACTION_SECURITY_SETTINGS =
|
||||||
"android.settings.SECURITY_SETTINGS";
|
"android.settings.SECURITY_SETTINGS";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Activity Action: Show settings to allow configuration of privacy options.
|
||||||
|
* <p>
|
||||||
|
* In some cases, a matching Activity may not exist, so ensure you
|
||||||
|
* safeguard against this.
|
||||||
|
* <p>
|
||||||
|
* Input: Nothing.
|
||||||
|
* <p>
|
||||||
|
* Output: Nothing.
|
||||||
|
*/
|
||||||
|
@SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
|
||||||
|
public static final String ACTION_PRIVACY_SETTINGS =
|
||||||
|
"android.settings.PRIVACY_SETTINGS";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Activity Action: Show settings to allow configuration of Wi-Fi.
|
* Activity Action: Show settings to allow configuration of Wi-Fi.
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user