Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 80fdd651 authored by Patrick Scott's avatar Patrick Scott
Browse files

Add EXTRA_SKIP_UI to skip the confirmation page.

Bug: 3284120
Change-Id: I6043ab859a813c7a70a3b782394dc5ace4890294
parent 667fb848
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -149633,6 +149633,17 @@
 visibility="public"
>
</field>
<field name="EXTRA_SKIP_UI"
 type="java.lang.String"
 transient="false"
 volatile="false"
 value="&quot;android.intent.extra.alarm.SKIP_UI&quot;"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
</class>
<interface name="BaseColumns"
 abstract="true"
+11 −0
Original line number Diff line number Diff line
@@ -68,4 +68,15 @@ public final class AlarmClock {
     * 59.
     */
    public static final String EXTRA_MINUTES = "android.intent.extra.alarm.MINUTES";

    /**
     * Activity Extra: Optionally skip the application UI.
     * <p>
     * This value can be passed as an extra field to the Intent created with
     * ACTION_SET_ALARM.  If true, the application is asked to bypass any
     * intermediate UI and instead pop a toast indicating the result then
     * finish the Activity.  If false, the application may display intermediate
     * UI like a confirmation dialog or alarm settings.  The default is false.
     */
    public static final String EXTRA_SKIP_UI = "android.intent.extra.alarm.SKIP_UI";
}