HomeSort by relevance Sort by last modified time
    Searched refs:tileSpec (Results 1 - 2 of 2) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QSTileHost.java 224 for (String tileSpec : tileSpecs) {
225 if (mTiles.containsKey(tileSpec)) {
226 newTiles.put(tileSpec, mTiles.get(tileSpec));
228 if (DEBUG) Log.d(TAG, "Creating tile: " + tileSpec);
230 newTiles.put(tileSpec, createTile(tileSpec));
232 Log.w(TAG, "Error creating tile for spec: " + tileSpec, t);
245 protected QSTile<?> createTile(String tileSpec) {
246 if (tileSpec.equals("wifi")) return new WifiTile(this)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
QsTuner.java 214 protected QSTile<?> createTile(String tileSpec) {
215 return new DraggableTile(this, tileSpec);
381 protected DraggableTile(QSTile.Host host, String tileSpec) {
383 Log.d(TAG, "Creating tile " + tileSpec);
384 mSpec = tileSpec;
530 String tileSpec = (String) ((DraggableTile) v.getTag()).mSpec;
531 ClipData data = ClipData.newPlainText(tileSpec, tileSpec);

Completed in 3823 milliseconds