Disable launcher focus outline animation

Bug: 335424188
Test: Manual
Flag: ACONFIG com.android.launcher3.enable_focus_outline Teamfood
Change-Id: I31c63607c914da956d7c6139cc5089fe419f40e1
This commit is contained in:
helencheuk
2024-04-17 17:27:00 +01:00
parent 2fb15b12d5
commit ce0f8595b7
3 changed files with 29 additions and 2 deletions

View File

@@ -485,7 +485,10 @@ public abstract class PagedView<T extends View & PageIndicator> extends ViewGrou
super.onVisibilityAggregated(isVisible);
}
protected boolean isPageInTransition() {
/**
* Returns true if the page is in the middle of transition to another page
*/
public boolean isPageInTransition() {
return mIsPageInTransition;
}