blob: c13752cb1f4dbe5e7f73ffefad5407b9fabf0acd [file] [log] [blame]
Winson Chunga6945242014-01-08 14:04:34 -08001/*
2 * Copyright (C) 2008 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.launcher3;
18
19import android.accounts.Account;
20import android.accounts.AccountManager;
Sunny Goyal424418b2014-08-22 16:09:37 -070021import android.animation.ObjectAnimator;
22import android.animation.PropertyValuesHolder;
Sunny Goyal70660032015-05-14 00:07:08 -070023import android.annotation.TargetApi;
Winson Chunga6945242014-01-08 14:04:34 -080024import android.app.ActivityManager;
25import android.content.Context;
26import android.content.SharedPreferences;
Sunny Goyal76616142014-08-26 10:54:08 -070027import android.graphics.drawable.Drawable;
Sunny Goyal70660032015-05-14 00:07:08 -070028import android.os.Build;
Winson Chunga6945242014-01-08 14:04:34 -080029import android.os.Bundle;
30import android.os.UserManager;
Amith Yamasani5ba21b62014-06-25 16:14:02 +053031import android.provider.Settings;
Winson Chunga6945242014-01-08 14:04:34 -080032import android.view.LayoutInflater;
33import android.view.View;
Sunny Goyal424418b2014-08-22 16:09:37 -070034import android.view.View.OnClickListener;
35import android.view.View.OnLongClickListener;
Winson Chunga6945242014-01-08 14:04:34 -080036import android.view.ViewGroup;
Sunny Goyal424418b2014-08-22 16:09:37 -070037import android.view.ViewTreeObserver.OnGlobalLayoutListener;
Winson Chunga6945242014-01-08 14:04:34 -080038import android.view.accessibility.AccessibilityManager;
Adam Cohen091440a2015-03-18 14:16:05 -070039import com.android.launcher3.util.Thunk;
40
Sunny Goyal424418b2014-08-22 16:09:37 -070041class LauncherClings implements OnClickListener {
Winson Chunga6945242014-01-08 14:04:34 -080042 private static final String MIGRATION_CLING_DISMISSED_KEY = "cling_gel.migration.dismissed";
Winson Chunga6945242014-01-08 14:04:34 -080043 private static final String WORKSPACE_CLING_DISMISSED_KEY = "cling_gel.workspace.dismissed";
Sunny Goyal424418b2014-08-22 16:09:37 -070044
Sunny Goyal76616142014-08-26 10:54:08 -070045 private static final String TAG_CROP_TOP_AND_SIDES = "crop_bg_top_and_sides";
Winson Chunga6945242014-01-08 14:04:34 -080046
47 private static final boolean DISABLE_CLINGS = false;
Winson Chunga6945242014-01-08 14:04:34 -080048
49 private static final int SHOW_CLING_DURATION = 250;
50 private static final int DISMISS_CLING_DURATION = 200;
51
Amith Yamasani5ba21b62014-06-25 16:14:02 +053052 // New Secure Setting in L
53 private static final String SKIP_FIRST_USE_HINTS = "skip_first_use_hints";
54
Adam Cohen091440a2015-03-18 14:16:05 -070055 @Thunk Launcher mLauncher;
Winson Chunga6945242014-01-08 14:04:34 -080056 private LayoutInflater mInflater;
Winson Chunga6945242014-01-08 14:04:34 -080057
58 /** Ctor */
59 public LauncherClings(Launcher launcher) {
60 mLauncher = launcher;
Sunny Goyale03b8122014-10-08 09:55:24 -070061 mInflater = LayoutInflater.from(mLauncher);
Winson Chunga6945242014-01-08 14:04:34 -080062 }
63
Sunny Goyal424418b2014-08-22 16:09:37 -070064 @Override
65 public void onClick(View v) {
66 int id = v.getId();
67 if (id == R.id.cling_dismiss_migration_use_default) {
68 // Disable the migration cling
69 dismissMigrationCling();
70 } else if (id == R.id.cling_dismiss_migration_copy_apps) {
71 // Copy the shortcuts from the old database
72 LauncherModel model = mLauncher.getModel();
73 model.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -070074 model.startLoader(PagedView.INVALID_RESTORE_PAGE,
Sunny Goyal424418b2014-08-22 16:09:37 -070075 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
76 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
77 // Set the flag to skip the folder cling
78 String spKey = LauncherAppState.getSharedPreferencesKey();
79 SharedPreferences sp = mLauncher.getSharedPreferences(spKey, Context.MODE_PRIVATE);
80 SharedPreferences.Editor editor = sp.edit();
81 editor.putBoolean(Launcher.USER_HAS_MIGRATED, true);
82 editor.apply();
83 // Disable the migration cling
84 dismissMigrationCling();
85 } else if (id == R.id.cling_dismiss_longpress_info) {
86 dismissLongPressCling();
Winson Chunga6945242014-01-08 14:04:34 -080087 }
Sunny Goyal424418b2014-08-22 16:09:37 -070088 }
Winson Chunga6945242014-01-08 14:04:34 -080089
Sunny Goyal424418b2014-08-22 16:09:37 -070090 /**
91 * Shows the migration cling.
92 *
93 * This flow is mutually exclusive with showFirstRunCling, and only runs if this Launcher
94 * package was not preinstalled and there exists a db to migrate from.
95 */
96 public void showMigrationCling() {
97 mLauncher.hideWorkspaceSearchAndHotseat();
98
99 ViewGroup root = (ViewGroup) mLauncher.findViewById(R.id.launcher);
100 View inflated = mInflater.inflate(R.layout.migration_cling, root);
101 inflated.findViewById(R.id.cling_dismiss_migration_copy_apps).setOnClickListener(this);
102 inflated.findViewById(R.id.cling_dismiss_migration_use_default).setOnClickListener(this);
103 }
104
105 private void dismissMigrationCling() {
106 mLauncher.showWorkspaceSearchAndHotseat();
107 Runnable dismissCb = new Runnable() {
108 public void run() {
109 Runnable cb = new Runnable() {
110 public void run() {
111 // Show the longpress cling next
112 showLongPressCling(false);
113 }
114 };
115 dismissCling(mLauncher.findViewById(R.id.migration_cling), cb,
116 MIGRATION_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
117 }
118 };
119 mLauncher.getWorkspace().post(dismissCb);
120 }
121
122 public void showLongPressCling(boolean showWelcome) {
123 ViewGroup root = (ViewGroup) mLauncher.findViewById(R.id.launcher);
124 View cling = mInflater.inflate(R.layout.longpress_cling, root, false);
125
Sunny Goyal76616142014-08-26 10:54:08 -0700126 cling.setOnLongClickListener(new OnLongClickListener() {
Sunny Goyal424418b2014-08-22 16:09:37 -0700127
128 @Override
129 public boolean onLongClick(View v) {
Winson Chungdc61c4d2015-04-20 18:26:57 -0700130 mLauncher.showOverviewMode(true);
Sunny Goyal424418b2014-08-22 16:09:37 -0700131 dismissLongPressCling();
132 return true;
133 }
134 });
135
136 final ViewGroup content = (ViewGroup) cling.findViewById(R.id.cling_content);
137 mInflater.inflate(showWelcome ? R.layout.longpress_cling_welcome_content
138 : R.layout.longpress_cling_content, content);
139 content.findViewById(R.id.cling_dismiss_longpress_info).setOnClickListener(this);
140
Sunny Goyal76616142014-08-26 10:54:08 -0700141 if (TAG_CROP_TOP_AND_SIDES.equals(content.getTag())) {
142 Drawable bg = new BorderCropDrawable(mLauncher.getResources().getDrawable(R.drawable.cling_bg),
143 true, true, true, false);
144 content.setBackground(bg);
145 }
146
Sunny Goyal424418b2014-08-22 16:09:37 -0700147 root.addView(cling);
148
149 if (showWelcome) {
150 // This is the first cling being shown. No need to animate.
151 return;
152 }
153
154 // Animate
155 content.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
156
157 @Override
158 public void onGlobalLayout() {
159 content.getViewTreeObserver().removeOnGlobalLayoutListener(this);
160
Sunny Goyal76616142014-08-26 10:54:08 -0700161 ObjectAnimator anim;
162 if (TAG_CROP_TOP_AND_SIDES.equals(content.getTag())) {
Sunny Goyal424418b2014-08-22 16:09:37 -0700163 content.setTranslationY(-content.getMeasuredHeight());
Sunny Goyal76616142014-08-26 10:54:08 -0700164 anim = LauncherAnimUtils.ofFloat(content, "translationY", 0);
Sunny Goyal424418b2014-08-22 16:09:37 -0700165 } else {
166 content.setScaleX(0);
167 content.setScaleY(0);
168 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1);
169 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1);
Sunny Goyal76616142014-08-26 10:54:08 -0700170 anim = LauncherAnimUtils.ofPropertyValuesHolder(content, scaleX, scaleY);
Sunny Goyal424418b2014-08-22 16:09:37 -0700171 }
172
Sunny Goyal424418b2014-08-22 16:09:37 -0700173 anim.setDuration(SHOW_CLING_DURATION);
174 anim.setInterpolator(new LogDecelerateInterpolator(100, 0));
Sunny Goyal424418b2014-08-22 16:09:37 -0700175 anim.start();
176 }
177 });
178 }
179
Adam Cohen091440a2015-03-18 14:16:05 -0700180 @Thunk void dismissLongPressCling() {
Sunny Goyal424418b2014-08-22 16:09:37 -0700181 Runnable dismissCb = new Runnable() {
182 public void run() {
183 dismissCling(mLauncher.findViewById(R.id.longpress_cling), null,
184 WORKSPACE_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
185 }
186 };
187 mLauncher.getWorkspace().post(dismissCb);
188 }
189
190 /** Hides the specified Cling */
Adam Cohen091440a2015-03-18 14:16:05 -0700191 @Thunk void dismissCling(final View cling, final Runnable postAnimationCb,
Sunny Goyal424418b2014-08-22 16:09:37 -0700192 final String flag, int duration) {
193 // To catch cases where siblings of top-level views are made invisible, just check whether
194 // the cling is directly set to GONE before dismissing it.
195 if (cling != null && cling.getVisibility() != View.GONE) {
196 final Runnable cleanUpClingCb = new Runnable() {
197 public void run() {
198 cling.setVisibility(View.GONE);
199 mLauncher.getSharedPrefs().edit()
200 .putBoolean(flag, true)
201 .apply();
202 if (postAnimationCb != null) {
203 postAnimationCb.run();
204 }
205 }
206 };
207 if (duration <= 0) {
208 cleanUpClingCb.run();
209 } else {
210 cling.animate().alpha(0).setDuration(duration).withEndAction(cleanUpClingCb);
Winson Chunga6945242014-01-08 14:04:34 -0800211 }
212 }
Winson Chunga6945242014-01-08 14:04:34 -0800213 }
214
215 /** Returns whether the clings are enabled or should be shown */
Sunny Goyal70660032015-05-14 00:07:08 -0700216 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung205cd772014-01-15 14:31:59 -0800217 private boolean areClingsEnabled() {
Winson Chunga6945242014-01-08 14:04:34 -0800218 if (DISABLE_CLINGS) {
219 return false;
220 }
221
Winson Chunga6945242014-01-08 14:04:34 -0800222 // disable clings when running in a test harness
223 if(ActivityManager.isRunningInTestHarness()) return false;
224
225 // Disable clings for accessibility when explore by touch is enabled
226 final AccessibilityManager a11yManager = (AccessibilityManager) mLauncher.getSystemService(
227 Launcher.ACCESSIBILITY_SERVICE);
228 if (a11yManager.isTouchExplorationEnabled()) {
229 return false;
230 }
231
232 // Restricted secondary users (child mode) will potentially have very few apps
233 // seeded when they start up for the first time. Clings won't work well with that
234 boolean supportsLimitedUsers =
235 android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.JELLY_BEAN_MR2;
236 Account[] accounts = AccountManager.get(mLauncher).getAccounts();
237 if (supportsLimitedUsers && accounts.length == 0) {
238 UserManager um = (UserManager) mLauncher.getSystemService(Context.USER_SERVICE);
239 Bundle restrictions = um.getUserRestrictions();
240 if (restrictions.getBoolean(UserManager.DISALLOW_MODIFY_ACCOUNTS, false)) {
241 return false;
242 }
243 }
Amith Yamasani5ba21b62014-06-25 16:14:02 +0530244 if (Settings.Secure.getInt(mLauncher.getContentResolver(), SKIP_FIRST_USE_HINTS, 0)
245 == 1) {
246 return false;
247 }
Winson Chunga6945242014-01-08 14:04:34 -0800248 return true;
249 }
250
Winson Chunge43a1e72014-01-15 10:33:02 -0800251 public boolean shouldShowFirstRunOrMigrationClings() {
Winson Chunga6945242014-01-08 14:04:34 -0800252 SharedPreferences sharedPrefs = mLauncher.getSharedPrefs();
Winson Chung205cd772014-01-15 14:31:59 -0800253 return areClingsEnabled() &&
Sunny Goyal424418b2014-08-22 16:09:37 -0700254 !sharedPrefs.getBoolean(WORKSPACE_CLING_DISMISSED_KEY, false) &&
Adam Cohen71e03b92014-02-21 14:09:53 -0800255 !sharedPrefs.getBoolean(MIGRATION_CLING_DISMISSED_KEY, false);
Winson Chunge43a1e72014-01-15 10:33:02 -0800256 }
Winson Chunga6945242014-01-08 14:04:34 -0800257
Adam Cohen71e03b92014-02-21 14:09:53 -0800258 public static void synchonouslyMarkFirstRunClingDismissed(Context ctx) {
259 SharedPreferences prefs = ctx.getSharedPreferences(
Winson Chungc6c03672014-03-06 10:12:02 -0800260 LauncherAppState.getSharedPreferencesKey(), Context.MODE_PRIVATE);
Adam Cohen71e03b92014-02-21 14:09:53 -0800261 SharedPreferences.Editor editor = prefs.edit();
Sunny Goyal424418b2014-08-22 16:09:37 -0700262 editor.putBoolean(WORKSPACE_CLING_DISMISSED_KEY, true);
Adam Cohen71e03b92014-02-21 14:09:53 -0800263 editor.commit();
264 }
Adam Cohen71e03b92014-02-21 14:09:53 -0800265}