Merge "Remove DevelopmentTileConfigActivity and clean up fragment."
This commit is contained in:
committed by
Android (Google) Code Review
commit
921db1f98c
@@ -0,0 +1,54 @@
|
||||
/*
|
||||
* Copyright (C) 2017 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.android.settings.development.qstile;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
import com.android.internal.logging.nano.MetricsProto;
|
||||
import com.android.settings.R;
|
||||
import com.android.settings.dashboard.DashboardFragment;
|
||||
import com.android.settingslib.core.AbstractPreferenceController;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class DevelopmentTileConfigFragment extends DashboardFragment {
|
||||
private static final String TAG = "DevelopmentTileConfig";
|
||||
|
||||
|
||||
@Override
|
||||
protected String getLogTag() {
|
||||
return TAG;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int getPreferenceScreenResId() {
|
||||
return R.xml.placeholder_prefs;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected List<AbstractPreferenceController> getPreferenceControllers(Context context) {
|
||||
final List<AbstractPreferenceController> controllers = new ArrayList<>();
|
||||
controllers.add(new DevelopmentTilePreferenceController(context));
|
||||
return controllers;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getMetricsCategory() {
|
||||
return MetricsProto.MetricsEvent.DEVELOPMENT_QS_TILE_CONFIG;
|
||||
}
|
||||
}
|
@@ -0,0 +1,102 @@
|
||||
/*
|
||||
* Copyright (C) 2017 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.android.settings.development.qstile;
|
||||
|
||||
import android.content.ComponentName;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.pm.PackageManager;
|
||||
import android.content.pm.ResolveInfo;
|
||||
import android.content.pm.ServiceInfo;
|
||||
import android.service.quicksettings.TileService;
|
||||
import android.support.v14.preference.SwitchPreference;
|
||||
import android.support.v7.preference.Preference;
|
||||
import android.support.v7.preference.PreferenceScreen;
|
||||
|
||||
import com.android.settingslib.core.AbstractPreferenceController;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class DevelopmentTilePreferenceController extends AbstractPreferenceController {
|
||||
|
||||
private final OnChangeHandler mOnChangeHandler;
|
||||
private final PackageManager mPackageManager;
|
||||
|
||||
public DevelopmentTilePreferenceController(Context context) {
|
||||
super(context);
|
||||
mOnChangeHandler = new OnChangeHandler(context);
|
||||
mPackageManager = context.getPackageManager();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isAvailable() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getPreferenceKey() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void displayPreference(PreferenceScreen screen) {
|
||||
super.displayPreference(screen);
|
||||
Context context = screen.getContext();
|
||||
Intent intent = new Intent(TileService.ACTION_QS_TILE)
|
||||
.setPackage(context.getPackageName());
|
||||
final List<ResolveInfo> resolveInfos = mPackageManager.queryIntentServices(intent,
|
||||
PackageManager.MATCH_DISABLED_COMPONENTS);
|
||||
for (ResolveInfo info : resolveInfos) {
|
||||
ServiceInfo sInfo = info.serviceInfo;
|
||||
final int enabledSetting = mPackageManager.getComponentEnabledSetting(
|
||||
new ComponentName(sInfo.packageName, sInfo.name));
|
||||
boolean checked = enabledSetting == PackageManager.COMPONENT_ENABLED_STATE_ENABLED
|
||||
|| ((enabledSetting == PackageManager.COMPONENT_ENABLED_STATE_DEFAULT)
|
||||
&& sInfo.enabled);
|
||||
|
||||
SwitchPreference preference = new SwitchPreference(context);
|
||||
preference.setTitle(sInfo.loadLabel(mPackageManager));
|
||||
preference.setIcon(sInfo.icon);
|
||||
preference.setKey(sInfo.name);
|
||||
preference.setChecked(checked);
|
||||
preference.setOnPreferenceChangeListener(mOnChangeHandler);
|
||||
screen.addPreference(preference);
|
||||
}
|
||||
}
|
||||
|
||||
private static class OnChangeHandler implements Preference.OnPreferenceChangeListener {
|
||||
|
||||
private final Context mContext;
|
||||
private final PackageManager mPackageManager;
|
||||
|
||||
public OnChangeHandler(Context context) {
|
||||
mContext = context;
|
||||
mPackageManager = context.getPackageManager();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onPreferenceChange(Preference preference, Object newValue) {
|
||||
ComponentName cn = new ComponentName(
|
||||
mContext.getPackageName(), preference.getKey());
|
||||
mPackageManager.setComponentEnabledSetting(cn, (Boolean) newValue
|
||||
? PackageManager.COMPONENT_ENABLED_STATE_ENABLED
|
||||
: PackageManager.COMPONENT_ENABLED_STATE_DISABLED,
|
||||
PackageManager.DONT_KILL_APP);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,134 @@
|
||||
/*
|
||||
* Copyright (C) 2016 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
||||
* use this file except in compliance with the License. You may obtain a copy of
|
||||
* the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations under
|
||||
* the License.
|
||||
*/
|
||||
|
||||
package com.android.settings.development.qstile;
|
||||
|
||||
import android.os.RemoteException;
|
||||
import android.os.SystemProperties;
|
||||
import android.provider.Settings;
|
||||
import android.service.quicksettings.Tile;
|
||||
import android.service.quicksettings.TileService;
|
||||
import android.view.IWindowManager;
|
||||
import android.view.ThreadedRenderer;
|
||||
import android.view.View;
|
||||
import android.view.WindowManagerGlobal;
|
||||
|
||||
import com.android.internal.app.LocalePicker;
|
||||
import com.android.settingslib.development.SystemPropPoker;
|
||||
|
||||
public abstract class DevelopmentTiles extends TileService {
|
||||
|
||||
protected abstract boolean isEnabled();
|
||||
|
||||
protected abstract void setIsEnabled(boolean isEnabled);
|
||||
|
||||
@Override
|
||||
public void onStartListening() {
|
||||
super.onStartListening();
|
||||
refresh();
|
||||
}
|
||||
|
||||
public void refresh() {
|
||||
getQsTile().setState(isEnabled() ? Tile.STATE_ACTIVE : Tile.STATE_INACTIVE);
|
||||
getQsTile().updateTile();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClick() {
|
||||
setIsEnabled(getQsTile().getState() == Tile.STATE_INACTIVE);
|
||||
SystemPropPoker.getInstance().poke(); // Settings app magic
|
||||
refresh();
|
||||
}
|
||||
|
||||
/**
|
||||
* Tile to control the "Show layout bounds" developer setting
|
||||
*/
|
||||
public static class ShowLayout extends DevelopmentTiles {
|
||||
|
||||
@Override
|
||||
protected boolean isEnabled() {
|
||||
return SystemProperties.getBoolean(View.DEBUG_LAYOUT_PROPERTY, false);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void setIsEnabled(boolean isEnabled) {
|
||||
SystemProperties.set(View.DEBUG_LAYOUT_PROPERTY, isEnabled ? "true" : "false");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Tile to control the "GPU profiling" developer setting
|
||||
*/
|
||||
public static class GPUProfiling extends DevelopmentTiles {
|
||||
|
||||
@Override
|
||||
protected boolean isEnabled() {
|
||||
final String value = SystemProperties.get(ThreadedRenderer.PROFILE_PROPERTY);
|
||||
return value.equals("visual_bars");
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void setIsEnabled(boolean isEnabled) {
|
||||
SystemProperties.set(ThreadedRenderer.PROFILE_PROPERTY, isEnabled ? "visual_bars" : "");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Tile to control the "Force RTL" developer setting
|
||||
*/
|
||||
public static class ForceRTL extends DevelopmentTiles {
|
||||
|
||||
@Override
|
||||
protected boolean isEnabled() {
|
||||
return Settings.Global.getInt(
|
||||
getContentResolver(), Settings.Global.DEVELOPMENT_FORCE_RTL, 0) != 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void setIsEnabled(boolean isEnabled) {
|
||||
Settings.Global.putInt(
|
||||
getContentResolver(), Settings.Global.DEVELOPMENT_FORCE_RTL, isEnabled ? 1 : 0);
|
||||
SystemProperties.set(Settings.Global.DEVELOPMENT_FORCE_RTL, isEnabled ? "1" : "0");
|
||||
LocalePicker.updateLocales(getResources().getConfiguration().getLocales());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Tile to control the "Animation speed" developer setting
|
||||
*/
|
||||
public static class AnimationSpeed extends DevelopmentTiles {
|
||||
|
||||
@Override
|
||||
protected boolean isEnabled() {
|
||||
IWindowManager wm = WindowManagerGlobal.getWindowManagerService();
|
||||
try {
|
||||
return wm.getAnimationScale(0) != 1;
|
||||
} catch (RemoteException e) { }
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void setIsEnabled(boolean isEnabled) {
|
||||
IWindowManager wm = WindowManagerGlobal.getWindowManagerService();
|
||||
float scale = isEnabled ? 10 : 1;
|
||||
try {
|
||||
wm.setAnimationScale(0, scale);
|
||||
wm.setAnimationScale(1, scale);
|
||||
wm.setAnimationScale(2, scale);
|
||||
} catch (RemoteException e) { }
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user