Lines Matching defs:hostView

1590             AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) {
1654 if (hostView == null) {
1656 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
1657 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
1660 launcherInfo.hostView = hostView;
1663 launcherInfo.hostView.setTag(launcherInfo);
1664 launcherInfo.hostView.setVisibility(View.VISIBLE);
1667 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, cellXY[0], cellXY[1],
1670 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
1872 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
1874 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1876 mWidgetsToAdvance.put(hostView, appWidgetInfo);
1882 void removeWidgetToAutoAdvance(View hostView) {
1883 if (mWidgetsToAdvance.containsKey(hostView)) {
1884 mWidgetsToAdvance.remove(hostView);
1890 removeWidgetToAutoAdvance(launcherInfo.hostView);
1891 launcherInfo.hostView = null;
2375 AppWidgetHostView hostView = info.boundWidget;
2377 if (hostView != null) {
2378 appWidgetId = hostView.getAppWidgetId();
2379 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
4436 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
4442 item.hostView = view;
4443 item.hostView.updateAppWidget(null);
4444 item.hostView.setOnClickListener(this);
4447 item.hostView.setTag(item);
4450 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
4452 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);