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

Commit 55eb88bf authored by Angela Wang's avatar Angela Wang Committed by Android (Google) Code Review
Browse files

Merge "Updates java doc for Flash Notification related APIs" into main

parents 8435fa97 297698d1
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -2067,10 +2067,10 @@ public final class AccessibilityManager {
    }

    /**
     * Start sequence (infinite) type of flash notification. Use
     * {@code Context.getOpPackageName()} as the identifier of this flash notification.
     * Start sequence (infinite) type of flash notification. Use {@code Context} to retrieve the
     * package name as the identifier of this flash notification.
     * The notification can be cancelled later by calling {@link #stopFlashNotificationSequence}
     * with same {@code Context.getOpPackageName()}.
     * with same {@code Context}.
     * If the binder associated with this {@link AccessibilityManager} instance dies then the
     * sequence will stop automatically. It is strongly recommended to call
     * {@link #stopFlashNotificationSequence} within a reasonable amount of time after calling
@@ -2104,8 +2104,8 @@ public final class AccessibilityManager {
    }

    /**
     * Stop sequence (infinite) type of flash notification. The flash notification with
     * {@code Context.getOpPackageName()} as identifier will be stopped if exist.
     * Stop sequence (infinite) type of flash notification. The flash notification with the
     * package name retrieved from {@code Context} as identifier will be stopped if exist.
     * It is strongly recommended to call this method within a reasonable amount of time after
     * calling {@link #startFlashNotificationSequence} method.
     *