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

Commit ba51f159 authored by Abodunrinwa Toki's avatar Abodunrinwa Toki
Browse files

Make ActionMode.isUiFocusable a TestApi

Test: bit CtsViewTestCases:android.view.cts.ActionModeTest
Bug: 62070427
Change-Id: I21b24d2a497bdc5234539bcc662ad707bb7f34dc
parent dfa984e9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -44231,6 +44231,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;
    }