OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TileService
(Results
1 - 12
of
12
) sorted by null
/packages/apps/Settings/src/com/android/settings/qstile/
DevelopmentTiles.java
24
import android.service.quicksettings.
TileService
;
48
public static class ShowLayout extends
TileService
{
73
public static class GPUProfiling extends
TileService
{
/frameworks/base/core/java/android/service/quicksettings/
TileService.java
38
* A
TileService
provides the user a tile that can be added to Quick Settings.
42
* <p>The lifecycle of a
TileService
is different from some other services in
48
* <li>When a tile is added by the user its
TileService
will be bound to and
57
* <p>
TileService
will be detected by tiles that match the {@value #ACTION_QS_TILE}
60
* icon for the tile. Here is an example
TileService
declaration.</p>
76
public class
TileService
extends Service {
79
* An activity that provides a user interface for adjusting
TileService
preferences.
80
* Optional but recommended for apps that implement a
TileService
.
87
* Action that identifies a Service as being a
TileService
.
99
* To make a
TileService
an active tile, set this meta-data to true on the TileService'
[
all
...]
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
NekoTile.java
19
import android.service.quicksettings.
TileService
;
25
public class NekoTile extends
TileService
implements PrefsListener {
/cts/hostsidetests/systemui/app/src/android/systemui/cts/
TestTileService.java
25
import android.service.quicksettings.
TileService
;
34
public class TestTileService extends
TileService
{
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
TileServices.java
35
import android.service.quicksettings.
TileService
;
69
new IntentFilter(
TileService
.ACTION_REQUEST_LISTENING));
312
if (
TileService
.ACTION_REQUEST_LISTENING.equals(intent.getAction())) {
314
(ComponentName) intent.getParcelableExtra(
TileService
.EXTRA_COMPONENT));
CustomTile.java
32
import android.service.quicksettings.
TileService
;
229
Intent i = new Intent(
TileService
.ACTION_QS_TILE_PREFERENCES);
242
return result != null ? new Intent(
TileService
.ACTION_QS_TILE_PREFERENCES)
TileLifecycleManager.java
37
import android.service.quicksettings.
TileService
;
47
* Manages the lifecycle of a
TileService
.
50
*
TileService
as soon as it is bound. It will only bind to the service when it is allowed to
96
mIntent.putExtra(
TileService
.EXTRA_SERVICE, service.asBinder());
97
mIntent.putExtra(
TileService
.EXTRA_TOKEN, mToken);
117
&& info.metaData.getBoolean(
TileService
.META_DATA_ACTIVE_TILE, false);
191
// This ordering is laid out manually to make sure we preserve the
TileService
TileServiceManager.java
32
import android.service.quicksettings.
TileService
;
256
Intent queryIntent = new Intent(
TileService
.ACTION_QS_TILE);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
TileQueryHelper.java
30
import android.service.quicksettings.
TileService
;
146
new Intent(
TileService
.ACTION_QS_TILE), 0, ActivityManager.getCurrentUser());
/prebuilts/sdk/current/
android.jar
/prebuilts/sdk/system_current/
android.jar
/frameworks/base/
compiled-classes-phone
[
all
...]
Completed in 268 milliseconds