Update Gesture navigation page to support search.

Make function public to be reused in SettingsGoogle. Add feature flag.

Bug: 294858168
Test: manual
Change-Id: I3c3ba6144303f21ae4f6da3a64e0208ab23a7382
This commit is contained in:
Holly Sun
2023-08-16 21:38:51 +00:00
parent 94f759230a
commit e23520d520
2 changed files with 4 additions and 1 deletions

View File

@@ -52,7 +52,8 @@ public class SystemNavigationPreferenceController extends BasePreferenceControll
}
}
static boolean isGestureAvailable(Context context) {
/** Returns {@code true} if gesture is available. */
public static boolean isGestureAvailable(Context context) {
// Skip if the swipe up settings are not available
if (!context.getResources().getBoolean(
com.android.internal.R.bool.config_swipe_up_gesture_setting_available)) {