/* * 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.systemui.qs; import android.content.ComponentName; import android.content.Context; import android.content.res.Resources; import android.os.Build; import android.provider.Settings; import com.android.internal.logging.InstanceId; import com.android.internal.logging.UiEventLogger; import com.android.systemui.R; import com.android.systemui.plugins.qs.QSFactory; import com.android.systemui.plugins.qs.QSTile; import com.android.systemui.plugins.qs.QSTileView; import com.android.systemui.util.leak.GarbageMonitor; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.List; public interface QSHost { String TILES_SETTING = Settings.Secure.QS_TILES; int POSITION_AT_END = -1; /** * Returns the default QS tiles for the context. * @param context the context to obtain the resources from * @return a list of specs of the default tiles */ static List getDefaultSpecs(Context context) { final ArrayList tiles = new ArrayList(); final Resources res = context.getResources(); final String defaultTileList = res.getString(R.string.quick_settings_tiles_default); tiles.addAll(Arrays.asList(defaultTileList.split(","))); if (Build.IS_DEBUGGABLE && GarbageMonitor.ADD_MEMORY_TILE_TO_DEFAULT_ON_DEBUGGABLE_BUILDS) { tiles.add(GarbageMonitor.MemoryTile.TILE_SPEC); } return tiles; } void warn(String message, Throwable t); void collapsePanels(); void forceCollapsePanels(); void openPanels(); Context getContext(); Context getUserContext(); int getUserId(); UiEventLogger getUiEventLogger(); Collection getTiles(); void addCallback(Callback callback); void removeCallback(Callback callback); void removeTile(String tileSpec); void removeTiles(Collection specs); List getSpecs(); /** * Create a view for a tile, iterating over all possible {@link QSFactory}. * * @see QSFactory#createTileView */ QSTileView createTileView(Context themedContext, QSTile tile, boolean collapsedView); /** Create a {@link QSTile} of a {@code tileSpec} type. */ QSTile createTile(String tileSpec); /** * Add a tile to the end * * @param spec string matching a pre-defined tilespec */ void addTile(String spec); /** * Add a tile into the requested spot, or at the end if the position is greater than the number * of tiles. * @param spec string matching a pre-defined tilespec * @param requestPosition -1 for end, 0 for beginning, or X for insertion at position X */ void addTile(String spec, int requestPosition); void addTile(ComponentName tile); /** * Adds a custom tile to the set of current tiles. * @param tile the component name of the {@link android.service.quicksettings.TileService} * @param end if true, the tile will be added at the end. If false, at the beginning. */ void addTile(ComponentName tile, boolean end); void removeTileByUser(ComponentName tile); void changeTilesByUser(List previousTiles, List newTiles); boolean isTileAdded(ComponentName componentName, int userId); void setTileAdded(ComponentName componentName, int userId, boolean added); int indexOf(String tileSpec); InstanceId getNewInstanceId(); interface Callback { void onTilesChanged(); } }