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.AlarmClock; 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 analog clock. 31 */ 32 public class AnalogAppWidgetProvider extends BroadcastReceiver { 33 static final String TAG = "AnalogAppWidgetProvider"; 34 35 public void onReceive(Context context, Intent intent) { 36 String action = intent.getAction(); 37 38 if (AppWidgetManager.ACTION_APPWIDGET_UPDATE.equals(action)) { 39 RemoteViews views = new RemoteViews(context.getPackageName(), 40 R.layout.analog_appwidget); 41 42 views.setOnClickPendingIntent(R.id.analog_appwidget, 43 PendingIntent.getActivity(context, 0, 44 new Intent(context, AlarmClock.class), 0)); 45 46 int[] appWidgetIds = intent.getIntArrayExtra( 47 AppWidgetManager.EXTRA_APPWIDGET_IDS); 48 49 AppWidgetManager gm = AppWidgetManager.getInstance(context); 50 gm.updateAppWidget(appWidgetIds, views); 51 } 52 } 53 } 54 55