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.DeskClock; 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 @Override onReceive(Context context, Intent intent)36 public void onReceive(Context context, Intent intent) { 37 String action = intent.getAction(); 38 39 if (AppWidgetManager.ACTION_APPWIDGET_UPDATE.equals(action)) { 40 RemoteViews views = new RemoteViews(context.getPackageName(), 41 R.layout.analog_appwidget); 42 43 views.setOnClickPendingIntent(R.id.analog_appwidget, 44 PendingIntent.getActivity(context, 0, 45 new Intent(context, DeskClock.class), 0)); 46 47 int[] appWidgetIds = intent.getIntArrayExtra( 48 AppWidgetManager.EXTRA_APPWIDGET_IDS); 49 50 AppWidgetManager gm = AppWidgetManager.getInstance(context); 51 gm.updateAppWidget(appWidgetIds, views); 52 } 53 } 54 } 55 56