OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NotificationService
(Results
1 - 10
of
10
) sorted by null
/packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
NotificationShowcaseActivity.java
38
Intent intent = new Intent(
NotificationService
.ACTION_CREATE);
39
intent.setComponent(new ComponentName(this,
NotificationService
.class));
44
Intent intent = new Intent(
NotificationService
.ACTION_DESTROY);
45
intent.setComponent(new ComponentName(this,
NotificationService
.class));
ProgressService.java
59
noMa.notify(
NotificationService
.NOTIFICATION_ID + mId,
60
NotificationService
.makeUploadNotification(
UpdateService.java
52
noMa.notify(
NotificationService
.NOTIFICATION_ID + id,
53
NotificationService
.makeSmsNotification(this, update, id, when));
FullScreenActivity.java
60
noMa.cancel(
NotificationService
.NOTIFICATION_ID + id);
PhoneService.java
65
noMa.cancel(
NotificationService
.NOTIFICATION_ID + id);
NotificationService.java
49
public class
NotificationService
extends IntentService {
51
private static final String TAG = "
NotificationService
";
58
public
NotificationService
() {
62
public
NotificationService
(String name) {
68
intent.setComponent(new ComponentName(context,
NotificationService
.class));
/packages/apps/TV/src/com/android/tv/receiver/
BootCompletedReceiver.java
31
import com.android.tv.recommendation.
NotificationService
;
40
* <li>start the {@link
NotificationService
} for recommendation</li>
53
// Start {@link
NotificationService
}.
54
Intent notificationIntent = new Intent(context,
NotificationService
.class);
55
notificationIntent.setAction(
NotificationService
.ACTION_SHOW_RECOMMENDATION);
/packages/apps/TV/src/com/android/tv/recommendation/
NotificationService.java
65
public class
NotificationService
extends Service implements Recommender.Listener,
67
private static final String TAG = "
NotificationService
";
124
public
NotificationService
() {
184
mRecommender = new Recommender(
NotificationService
.this,
NotificationService
.this, true);
416
private static ImageLoader.ImageLoaderCallback<
NotificationService
> createChannelLogoCallback(
417
NotificationService
service, final int notificationId, final String inputDisplayName,
419
return new ImageLoader.ImageLoaderCallback<
NotificationService
>(service) {
421
public void onBitmapLoaded(
NotificationService
service, Bitmap channelLogo) {
519
private static class NotificationHandler extends WeakHandler<
NotificationService
> {
[
all
...]
/packages/apps/TV/src/com/android/tv/ui/
TunableTvView.java
68
import com.android.tv.recommendation.
NotificationService
;
584
&& params.getString(
NotificationService
.TUNE_PARAMS_RECOMMENDATION_TYPE) != null;
[
all
...]
/packages/apps/TV/src/com/android/tv/
MainActivity.java
102
import com.android.tv.recommendation.
NotificationService
;
[
all
...]
Completed in 3962 milliseconds