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

  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
CustomTile.java 47 public class CustomTile extends QSTile<QSTile.State> implements TileChangeListener {
70 private CustomTile(QSTileHost host, String action) {
346 return new CustomTile(host, action);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QSTileHost.java 39 import com.android.systemui.qs.external.CustomTile;
336 if (tile != null && (!(tile instanceof CustomTile)
337 || ((CustomTile) tile).getUser() == currentUser)) {
386 newSpecs.add(0, CustomTile.toSpec(tile));
392 newSpecs.remove(CustomTile.toSpec(tile));
401 if (!tileSpec.startsWith(CustomTile.PREFIX)) continue;
403 ComponentName component = CustomTile.getComponentFromSpec(tileSpec);
415 if (!tileSpec.startsWith(CustomTile.PREFIX)) continue;
417 ComponentName component = CustomTile.getComponentFromSpec(tileSpec);
451 else if (tileSpec.startsWith(CustomTile.PREFIX)) return CustomTile.create(this,tileSpec)
    [all...]

Completed in 1003 milliseconds