Add a PRIVACY_SETTINGS action to launch the new Privacy settings screen.

This commit is contained in:
Amith Yamasani
2009-09-23 15:33:19 -07:00
parent 9f8d59eea1
commit c15255a979
2 changed files with 25 additions and 0 deletions

View File

@ -118785,6 +118785,17 @@
visibility="public"
>
</field>
<field name="ACTION_PRIVACY_SETTINGS"
type="java.lang.String"
transient="false"
volatile="false"
value="&quot;android.settings.PRIVACY_SETTINGS&quot;"
static="true"
final="true"
deprecated="not deprecated"
visibility="public"
>
</field>
<field name="ACTION_QUICK_LAUNCH_SETTINGS"
type="java.lang.String"
transient="false"

View File

@ -147,6 +147,20 @@ public final class Settings {
public static final String ACTION_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.