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

Commit 5b0a5fc1 authored by Abodunrinwa Toki's avatar Abodunrinwa Toki Committed by Android (Google) Code Review
Browse files

Merge "Make ActionMode.isUiFocusable a TestApi"

parents 24a2ce0c ba51f159
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -44233,6 +44233,7 @@ package android.view {
    method public abstract void invalidate();
    method public void invalidateContentRect();
    method public boolean isTitleOptional();
    method public boolean isUiFocusable();
    method public void onWindowFocusChanged(boolean);
    method public abstract void setCustomView(android.view.View);
    method public abstract void setSubtitle(java.lang.CharSequence);
+2 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@ package android.view;


import android.annotation.StringRes;
import android.annotation.TestApi;
import android.graphics.Rect;

/**
@@ -278,6 +279,7 @@ public abstract class ActionMode {
     * @return true if the UI used to show this action mode can take focus
     * @hide Internal use only
     */
    @TestApi
    public boolean isUiFocusable() {
        return true;
    }