2009-03-03 19:32:27 -08:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2009 The Android Open Source Project
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
2013-06-05 22:57:57 -04:00
|
|
|
package com.android.launcher3;
|
2009-03-03 19:32:27 -08:00
|
|
|
|
2009-03-11 12:11:58 -07:00
|
|
|
import android.appwidget.AppWidgetHost;
|
|
|
|
|
import android.appwidget.AppWidgetHostView;
|
|
|
|
|
import android.appwidget.AppWidgetProviderInfo;
|
2009-03-03 19:32:27 -08:00
|
|
|
import android.content.Context;
|
|
|
|
|
|
|
|
|
|
/**
|
2009-03-11 12:11:58 -07:00
|
|
|
* Specific {@link AppWidgetHost} that creates our {@link LauncherAppWidgetHostView}
|
2009-03-03 19:32:27 -08:00
|
|
|
* which correctly captures all long-press events. This ensures that users can
|
2009-03-11 12:11:58 -07:00
|
|
|
* always pick up and move widgets.
|
2009-03-03 19:32:27 -08:00
|
|
|
*/
|
2009-03-11 12:11:58 -07:00
|
|
|
public class LauncherAppWidgetHost extends AppWidgetHost {
|
2012-06-14 11:59:51 -07:00
|
|
|
|
|
|
|
|
Launcher mLauncher;
|
|
|
|
|
|
|
|
|
|
public LauncherAppWidgetHost(Launcher launcher, int hostId) {
|
|
|
|
|
super(launcher, hostId);
|
|
|
|
|
mLauncher = launcher;
|
2009-03-03 19:32:27 -08:00
|
|
|
}
|
2010-09-13 14:49:43 -07:00
|
|
|
|
2009-03-11 12:11:58 -07:00
|
|
|
@Override
|
|
|
|
|
protected AppWidgetHostView onCreateView(Context context, int appWidgetId,
|
|
|
|
|
AppWidgetProviderInfo appWidget) {
|
2010-10-01 16:12:03 -07:00
|
|
|
return new LauncherAppWidgetHostView(context);
|
2009-03-03 19:32:27 -08:00
|
|
|
}
|
2011-01-11 20:01:31 -08:00
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void stopListening() {
|
|
|
|
|
super.stopListening();
|
|
|
|
|
clearViews();
|
|
|
|
|
}
|
2012-06-14 11:59:51 -07:00
|
|
|
|
|
|
|
|
protected void onProvidersChanged() {
|
|
|
|
|
// Once we get the message that widget packages are updated, we need to rebind items
|
|
|
|
|
// in AppsCustomize accordingly.
|
2013-05-20 15:49:32 +02:00
|
|
|
mLauncher.bindPackagesUpdated(LauncherModel.getSortedWidgetsAndShortcuts(mLauncher));
|
2012-06-14 11:59:51 -07:00
|
|
|
}
|
2009-03-03 19:32:27 -08:00
|
|
|
}
|