1 /*
2  * Copyright (C) 2009 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.alarmclock;
18 
19 import com.android.deskclock.HandleDeskClockApiCalls;
20 import com.android.deskclock.R;
21 
22 import android.app.PendingIntent;
23 import android.appwidget.AppWidgetManager;
24 import android.content.BroadcastReceiver;
25 import android.content.Context;
26 import android.content.Intent;
27 import android.widget.RemoteViews;
28 
29 /**
30  * Simple widget to show an analog clock.
31  */
32 public class AnalogAppWidgetProvider extends BroadcastReceiver {
33     @Override
onReceive(Context context, Intent intent)34     public void onReceive(Context context, Intent intent) {
35         if (!AppWidgetManager.ACTION_APPWIDGET_UPDATE.equals(intent.getAction())) {
36             return;
37         }
38 
39         final String packageName = context.getPackageName();
40         final RemoteViews views = new RemoteViews(packageName, R.layout.analog_appwidget);
41 
42         final Intent showClock = new Intent(HandleDeskClockApiCalls.ACTION_SHOW_CLOCK)
43                 .putExtra(HandleDeskClockApiCalls.EXTRA_FROM_WIDGET, true);
44         final PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, showClock, 0);
45         views.setOnClickPendingIntent(R.id.analog_appwidget, pendingIntent);
46 
47         final int[] appWidgetIds = intent.getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS);
48         AppWidgetManager.getInstance(context).updateAppWidget(appWidgetIds, views);
49     }
50 }