blob: b015b681155e2bb87734be768d054a4ac30e7c0f [file] [log] [blame]
Michael Jurkac9029d92012-04-20 01:47:44 -07001/*
2 * Copyright (C) 2012 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
17package com.android.settings;
18
19import android.app.AlertDialog;
20import android.appwidget.AppWidgetManager;
21import android.content.ComponentName;
22import android.content.Context;
23import android.content.DialogInterface;
24import android.content.Intent;
25import android.content.pm.ApplicationInfo;
26import android.content.pm.PackageManager;
27import android.os.Bundle;
Svet Ganovc15c0c02014-08-01 15:06:43 -070028import android.os.UserHandle;
Michael Jurkac9029d92012-04-20 01:47:44 -070029import android.util.Log;
30import android.view.LayoutInflater;
31import android.widget.CheckBox;
32
33import com.android.internal.app.AlertActivity;
34import com.android.internal.app.AlertController;
35
36/**
37 * This activity is displayed when an app launches the BIND_APPWIDGET intent. This allows apps
38 * that don't have the BIND_APPWIDGET permission to bind specific widgets.
39 */
40public class AllowBindAppWidgetActivity extends AlertActivity implements
41 DialogInterface.OnClickListener {
42
43 private CheckBox mAlwaysUse;
44 private int mAppWidgetId;
Svet Ganovc15c0c02014-08-01 15:06:43 -070045 private UserHandle mProfile;
Michael Jurkac9029d92012-04-20 01:47:44 -070046 private ComponentName mComponentName;
47 private String mCallingPackage;
48 private AppWidgetManager mAppWidgetManager;
49
50 // Indicates whether this activity was closed because of a click
51 private boolean mClicked;
52
53 public void onClick(DialogInterface dialog, int which) {
Mikhail Malakhovbd5729b2016-10-20 22:45:18 +030054 mClicked = true;
Michael Jurkac9029d92012-04-20 01:47:44 -070055 if (which == AlertDialog.BUTTON_POSITIVE) {
Michael Jurkac9029d92012-04-20 01:47:44 -070056 if (mAppWidgetId != -1 && mComponentName != null && mCallingPackage != null) {
57 try {
Svet Ganovc15c0c02014-08-01 15:06:43 -070058 final boolean bound = mAppWidgetManager.bindAppWidgetIdIfAllowed(mAppWidgetId,
59 mProfile, mComponentName, null);
60 if (bound) {
61 Intent result = new Intent();
62 result.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, mAppWidgetId);
63 setResult(RESULT_OK, result);
64 }
Michael Jurkac9029d92012-04-20 01:47:44 -070065 } catch (Exception e) {
66 Log.v("BIND_APPWIDGET", "Error binding widget with id "
67 + mAppWidgetId + " and component " + mComponentName);
68 }
Svet Ganovc15c0c02014-08-01 15:06:43 -070069
70 final boolean alwaysAllowBind = mAlwaysUse.isChecked();
71 if (alwaysAllowBind != mAppWidgetManager.hasBindAppWidgetPermission(
72 mCallingPackage)) {
73 mAppWidgetManager.setBindAppWidgetPermission(mCallingPackage,
74 alwaysAllowBind);
75 }
Michael Jurkac9029d92012-04-20 01:47:44 -070076 }
77 }
78 finish();
79 }
80
Mikhail Malakhovbd5729b2016-10-20 22:45:18 +030081 @Override
Svet Ganovc15c0c02014-08-01 15:06:43 -070082 protected void onPause() {
Mikhail Malakhovbd5729b2016-10-20 22:45:18 +030083 if (!mClicked) { // RESULT_CANCELED
84 finish();
Michael Jurkac9029d92012-04-20 01:47:44 -070085 }
Mikhail Malakhovbd5729b2016-10-20 22:45:18 +030086 super.onPause();
Michael Jurkac9029d92012-04-20 01:47:44 -070087 }
88
Mikhail Malakhovbd5729b2016-10-20 22:45:18 +030089 @Override
Michael Jurkac9029d92012-04-20 01:47:44 -070090 protected void onCreate(Bundle savedInstanceState) {
91 super.onCreate(savedInstanceState);
Mikhail Malakhovbd5729b2016-10-20 22:45:18 +030092 setResult(RESULT_CANCELED); // By default, set the result to cancelled
Michael Jurkac9029d92012-04-20 01:47:44 -070093 Intent intent = getIntent();
94 CharSequence label = "";
95 if (intent != null) {
96 try {
97 mAppWidgetId = intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Svet Ganovc15c0c02014-08-01 15:06:43 -070098 mProfile = intent.getParcelableExtra(
99 AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
100 if (mProfile == null) {
101 mProfile = android.os.Process.myUserHandle();
102 }
103 mComponentName =
Michael Jurkac9029d92012-04-20 01:47:44 -0700104 intent.getParcelableExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER);
105 mCallingPackage = getCallingPackage();
106 PackageManager pm = getPackageManager();
107 ApplicationInfo ai = pm.getApplicationInfo(mCallingPackage, 0);
108 label = pm.getApplicationLabel(ai);
109 } catch (Exception e) {
110 mAppWidgetId = -1;
111 mComponentName = null;
112 mCallingPackage = null;
113 Log.v("BIND_APPWIDGET", "Error getting parameters");
Michael Jurkac9029d92012-04-20 01:47:44 -0700114 finish();
115 return;
116 }
117 }
118 AlertController.AlertParams ap = mAlertParams;
119 ap.mTitle = getString(R.string.allow_bind_app_widget_activity_allow_bind_title);
120 ap.mMessage = getString(R.string.allow_bind_app_widget_activity_allow_bind, label);
121 ap.mPositiveButtonText = getString(R.string.create);
122 ap.mNegativeButtonText = getString(android.R.string.cancel);
123 ap.mPositiveButtonListener = this;
124 ap.mNegativeButtonListener = this;
125 LayoutInflater inflater =
126 (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
127 ap.mView = inflater.inflate(com.android.internal.R.layout.always_use_checkbox, null);
128 mAlwaysUse = (CheckBox) ap.mView.findViewById(com.android.internal.R.id.alwaysUse);
129 mAlwaysUse.setText(getString(R.string.allow_bind_app_widget_activity_always_allow_bind, label));
130
131 mAlwaysUse.setPadding(mAlwaysUse.getPaddingLeft(),
132 mAlwaysUse.getPaddingTop(),
133 mAlwaysUse.getPaddingRight(),
134 (int) (mAlwaysUse.getPaddingBottom() +
135 getResources().getDimension(R.dimen.bind_app_widget_dialog_checkbox_bottom_padding)));
136
137 mAppWidgetManager = AppWidgetManager.getInstance(this);
Svet Ganovc15c0c02014-08-01 15:06:43 -0700138 mAlwaysUse.setChecked(mAppWidgetManager.hasBindAppWidgetPermission(mCallingPackage,
139 mProfile.getIdentifier()));
Michael Jurkac9029d92012-04-20 01:47:44 -0700140
141 setupAlert();
142 }
143}