Searched refs:TileService (Results 1 – 16 of 16) sorted by relevance
/frameworks/base/core/java/android/service/quicksettings/ |
D | TileService.java | 84 public class TileService extends Service { class 413 mTileServiceName = TileService.this.getClass().getSimpleName(); 425 TileService.this.onTileAdded(); 431 TileService.this.onStopListening(); 433 TileService.this.onTileRemoved(); 439 TileService.this.onStopListening(); 446 TileService.this.onStartListening(); 452 TileService.this.onClick();
|
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/ |
D | NekoTile.java | 21 import android.service.quicksettings.TileService; 27 public class NekoTile extends TileService implements PrefsListener {
|
/frameworks/base/packages/SystemUI/docs/ |
D | qs-tiles.md | 120 ## Third party tiles (TileService) 122 …is implemented by developers subclassing [`TileService`](/core/java/android/service/quicksettings/… 140 #### TileService subsubsection 182 …oken (`Binder`). This token is used in the callbacks to identify this `TileService` and match it t… 188 …TileService` can be declared as an active tile by adding specific meta-data to its manifest (see [… 202 …n implementation of the `Binder` that receives all calls from current `TileService` components and… 204 …ade to this class, it matches the corresponding token assigned to the `TileService` with the `Comp… 206 As this class is the only one that's aware of every `TileService` that's currently bound, it is als… 210 This class is in charge of binding and unbinding to a particular `TileService` when necessary, as w… 214 Each `TileService` gets assigned an exclusive `TileLifecycleManager` when its corresponding tile is… [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/ |
D | TileLifecycleManager.java | 35 import android.service.quicksettings.TileService; 115 mIntent.putExtra(TileService.EXTRA_SERVICE, service.asBinder()); in TileLifecycleManager() 116 mIntent.putExtra(TileService.EXTRA_TOKEN, mToken); in TileLifecycleManager() 142 && info.metaData.getBoolean(TileService.META_DATA_ACTIVE_TILE, false); in isActiveTile() 160 && info.metaData.getBoolean(TileService.META_DATA_TOGGLEABLE_TILE, false); in isToggleableTile()
|
D | TileServices.java | 34 import android.service.quicksettings.TileService; 80 new IntentFilter(TileService.ACTION_REQUEST_LISTENING), in TileServices() 347 if (TileService.ACTION_REQUEST_LISTENING.equals(intent.getAction())) {
|
D | CustomTile.java | 38 import android.service.quicksettings.TileService; 344 Intent i = new Intent(TileService.ACTION_QS_TILE_PREFERENCES); in getLongClickIntent() 349 i.putExtra(TileService.EXTRA_STATE, mTile.getState()); in getLongClickIntent() 358 return result != null ? new Intent(TileService.ACTION_QS_TILE_PREFERENCES) in resolveIntent()
|
D | TileServiceManager.java | 30 import android.service.quicksettings.TileService; 279 Intent queryIntent = new Intent(TileService.ACTION_QS_TILE);
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/ |
D | TileLifecycleManagerTest.java | 42 import android.service.quicksettings.TileService; 107 defaultServiceInfo.metaData.putBoolean(TileService.META_DATA_ACTIVE_TILE, true); in setPackageEnabled() 108 defaultServiceInfo.metaData.putBoolean(TileService.META_DATA_TOGGLEABLE_TILE, true); in setPackageEnabled()
|
D | TileServicesTest.java | 36 import android.service.quicksettings.TileService; 138 assertTrue(captor.getValue().hasAction(TileService.ACTION_REQUEST_LISTENING)); in testActiveTileListenerRegisteredOnAllUsers()
|
/frameworks/base/services/core/java/com/android/server/statusbar/ |
D | StatusBarShellCommand.java | 29 import android.service.quicksettings.TileService; 68 pw.println(String.valueOf(TileService.isQuickSettingsSupported())); in onCommand()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/ |
D | TileQueryHelper.java | 29 import android.service.quicksettings.TileService; 220 new Intent(TileService.ACTION_QS_TILE), 0, mUserTracker.getUserId()); in addPackageTiles()
|
/frameworks/base/core/api/ |
D | test-lint-baseline.txt | 2620 OnNameExpected: android.service.quicksettings.TileService#isQuickSettingsSupported():
|
D | test-current.txt | 2374 public class TileService extends android.app.Service {
|
D | system-current.txt | 10188 public class TileService extends android.app.Service {
|
D | current.txt | 38891 public class TileService extends android.app.Service { 38892 ctor public TileService();
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 53524 Landroid/service/quicksettings/TileService$H;->MSG_START_LISTENING:I 53525 Landroid/service/quicksettings/TileService$H;->MSG_START_SUCCESS:I 53526 Landroid/service/quicksettings/TileService$H;->MSG_STOP_LISTENING:I 53527 Landroid/service/quicksettings/TileService$H;->MSG_TILE_ADDED:I 53528 Landroid/service/quicksettings/TileService$H;->MSG_TILE_CLICKED:I 53529 Landroid/service/quicksettings/TileService$H;->MSG_TILE_REMOVED:I 53530 Landroid/service/quicksettings/TileService$H;->MSG_UNLOCK_COMPLETE:I 53531 Landroid/service/quicksettings/TileService;->ACTION_REQUEST_LISTENING:Ljava/lang/String; 53532 Landroid/service/quicksettings/TileService;->EXTRA_SERVICE:Ljava/lang/String; 53533 Landroid/service/quicksettings/TileService;->EXTRA_STATE:Ljava/lang/String; [all …]
|