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;
|
2016-11-04 10:19:58 -07:00
|
|
|
import android.util.SparseArray;
|
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>();
|
2016-11-04 10:19:58 -07:00
|
|
|
private final SparseArray<LauncherAppWidgetHostView> mViews = new SparseArray<>();
|
2014-08-11 17:05:23 -07:00
|
|
|
|
2015-07-06 12:22:14 -07:00
|
|
|
private Launcher mLauncher;
|
2012-06-14 11:59:51 -07:00
|
|
|
|
|
|
|
|
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
|
2016-11-04 10:19:58 -07:00
|
|
|
protected LauncherAppWidgetHostView onCreateView(Context context, int appWidgetId,
|
2009-03-11 12:11:58 -07:00
|
|
|
AppWidgetProviderInfo appWidget) {
|
2016-11-04 10:19:58 -07:00
|
|
|
LauncherAppWidgetHostView view = new LauncherAppWidgetHostView(context);
|
|
|
|
|
mViews.put(appWidgetId, view);
|
|
|
|
|
return view;
|
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) {
|
2016-11-04 10:19:58 -07:00
|
|
|
if (!Utilities.isBinderSizeError(e)) {
|
2014-06-16 15:22:56 -07:00
|
|
|
throw new RuntimeException(e);
|
|
|
|
|
}
|
2016-11-04 10:19:58 -07:00
|
|
|
// 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.
|
2014-06-16 15:22:56 -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() {
|
2015-04-20 18:19:25 -07:00
|
|
|
if (!mProviderChangeListeners.isEmpty()) {
|
|
|
|
|
for (Runnable callback : new ArrayList<>(mProviderChangeListeners)) {
|
|
|
|
|
callback.run();
|
|
|
|
|
}
|
2014-08-11 17:05:23 -07:00
|
|
|
}
|
2016-03-03 16:58:55 -08:00
|
|
|
|
|
|
|
|
if (Utilities.ATLEAST_MARSHMALLOW) {
|
|
|
|
|
mLauncher.notifyWidgetProvidersChanged();
|
|
|
|
|
}
|
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 {
|
2016-11-04 10:19:58 -07:00
|
|
|
try {
|
|
|
|
|
return super.createView(context, appWidgetId, appWidget);
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
if (!Utilities.isBinderSizeError(e)) {
|
|
|
|
|
throw new RuntimeException(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If the exception was thrown while fetching the remote views, let the view stay.
|
|
|
|
|
// This will ensure that if the widget posts a valid update later, the view
|
|
|
|
|
// will update.
|
|
|
|
|
LauncherAppWidgetHostView view = mViews.get(appWidgetId);
|
|
|
|
|
if (view == null) {
|
|
|
|
|
view = onCreateView(mLauncher, appWidgetId, appWidget);
|
|
|
|
|
}
|
|
|
|
|
view.setAppWidget(appWidgetId, appWidget);
|
|
|
|
|
view.switchToErrorView();
|
|
|
|
|
return view;
|
|
|
|
|
}
|
2014-03-05 18:07:04 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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);
|
2015-10-05 10:36:54 -07:00
|
|
|
// The super method updates the dimensions of the providerInfo. Update the
|
|
|
|
|
// launcher spans accordingly.
|
|
|
|
|
info.initSpans();
|
2014-03-05 18:07:04 -08:00
|
|
|
}
|
2016-11-04 10:19:58 -07:00
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void deleteAppWidgetId(int appWidgetId) {
|
|
|
|
|
super.deleteAppWidgetId(appWidgetId);
|
|
|
|
|
mViews.remove(appWidgetId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected void clearViews() {
|
|
|
|
|
super.clearViews();
|
|
|
|
|
mViews.clear();
|
|
|
|
|
}
|
2009-03-03 19:32:27 -08:00
|
|
|
}
|