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;
|
2014-06-16 15:22:56 -07:00
|
|
|
import android.os.TransactionTooLargeException;
|
2014-03-05 18:07:04 -08:00
|
|
|
import android.view.LayoutInflater;
|
2009-03-03 19:32:27 -08:00
|
|
|
|
2014-08-11 17:05:23 -07:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
2014-03-05 18:07:04 -08:00
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
/**
|
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
|
|
|
|
2014-08-11 17:05:23 -07:00
|
|
|
private final ArrayList<Runnable> mProviderChangeListeners = new ArrayList<Runnable>();
|
|
|
|
|
|
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
|
|
|
|
2014-06-16 15:22:56 -07:00
|
|
|
@Override
|
|
|
|
|
public void startListening() {
|
|
|
|
|
try {
|
|
|
|
|
super.startListening();
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
if (e.getCause() instanceof TransactionTooLargeException) {
|
|
|
|
|
// We're willing to let this slide. The exception is being caused by the list of
|
|
|
|
|
// RemoteViews which is being passed back. The startListening relationship will
|
|
|
|
|
// have been established by this point, and we will end up populating the
|
|
|
|
|
// widgets upon bind anyway. See issue 14255011 for more context.
|
|
|
|
|
} else {
|
|
|
|
|
throw new RuntimeException(e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-11 20:01:31 -08:00
|
|
|
@Override
|
|
|
|
|
public void stopListening() {
|
|
|
|
|
super.stopListening();
|
|
|
|
|
clearViews();
|
|
|
|
|
}
|
2012-06-14 11:59:51 -07:00
|
|
|
|
2014-08-11 17:05:23 -07:00
|
|
|
public void addProviderChangeListener(Runnable callback) {
|
|
|
|
|
mProviderChangeListeners.add(callback);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void removeProviderChangeListener(Runnable callback) {
|
|
|
|
|
mProviderChangeListeners.remove(callback);
|
|
|
|
|
}
|
|
|
|
|
|
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.
|
2015-03-11 16:36:52 -07:00
|
|
|
mLauncher.bindPackagesUpdated(LauncherModel.getSortedWidgetsAndShortcuts(mLauncher,
|
|
|
|
|
true /* refresh */));
|
2014-08-11 17:05:23 -07:00
|
|
|
|
|
|
|
|
for (Runnable callback : mProviderChangeListeners) {
|
|
|
|
|
callback.run();
|
|
|
|
|
}
|
2012-06-14 11:59:51 -07:00
|
|
|
}
|
2014-03-05 18:07:04 -08:00
|
|
|
|
|
|
|
|
public AppWidgetHostView createView(Context context, int appWidgetId,
|
|
|
|
|
LauncherAppWidgetProviderInfo appWidget) {
|
|
|
|
|
if (appWidget.isCustomWidget) {
|
|
|
|
|
LauncherAppWidgetHostView lahv = new LauncherAppWidgetHostView(context);
|
|
|
|
|
LayoutInflater inflater = (LayoutInflater)
|
|
|
|
|
context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
|
inflater.inflate(appWidget.initialLayout, lahv);
|
|
|
|
|
lahv.setAppWidget(0, appWidget);
|
|
|
|
|
lahv.updateLastInflationOrientation();
|
|
|
|
|
return lahv;
|
|
|
|
|
} else {
|
|
|
|
|
return super.createView(context, appWidgetId, appWidget);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Called when the AppWidget provider for a AppWidget has been upgraded to a new apk.
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
protected void onProviderChanged(int appWidgetId, AppWidgetProviderInfo appWidget) {
|
|
|
|
|
LauncherAppWidgetProviderInfo info = LauncherAppWidgetProviderInfo.fromProviderInfo(
|
|
|
|
|
mLauncher, appWidget);
|
|
|
|
|
super.onProviderChanged(appWidgetId, info);
|
|
|
|
|
}
|
2009-03-03 19:32:27 -08:00
|
|
|
}
|