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) {
353 return new CustomTile(host, action);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QSTileHost.java 40 import com.android.systemui.qs.external.CustomTile;
333 if (tile != null && (!(tile instanceof CustomTile)
334 || ((CustomTile) tile).getUser() == currentUser)) {
337 if (!(tile instanceof CustomTile) && mCurrentUser != 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);
438 else if (tileSpec.startsWith(CustomTile.PREFIX)) return CustomTile.create(this,tileSpec)
    [all...]

Completed in 278 milliseconds