Enable(visible) or Disabled(invisible) all one-handed settings
preference by System Property flag configuration. To check System Property flag "support_one_handed_mode" configuration then enable(visible) or disable(invisible) all one-handed settings preference. Bug: 154290458 Test: manual Test: RunSettingsRoboTests Change-Id: Ib6ed12dd65e66747e53b6333574ba0ad5be3c6e0
This commit is contained in:
@@ -17,6 +17,8 @@
|
||||
package com.android.settings.gestures;
|
||||
|
||||
import android.app.settings.SettingsEnums;
|
||||
import android.content.Context;
|
||||
import android.os.SystemProperties;
|
||||
|
||||
import com.android.settings.R;
|
||||
import com.android.settings.dashboard.DashboardFragment;
|
||||
@@ -47,5 +49,11 @@ public class OneHandedSettings extends DashboardFragment {
|
||||
}
|
||||
|
||||
public static final BaseSearchIndexProvider SEARCH_INDEX_DATA_PROVIDER =
|
||||
new BaseSearchIndexProvider(R.xml.one_handed_settings);
|
||||
new BaseSearchIndexProvider(R.xml.one_handed_settings) {
|
||||
@Override
|
||||
protected boolean isPageSearchEnabled(Context context) {
|
||||
return SystemProperties.getBoolean(
|
||||
OneHandedEnablePreferenceController.SUPPORT_ONE_HANDED_MODE, false);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user