resolve merge conflicts of 629a67c5a to ub-launcher3-dorval-polish

Test: I solemnly swear I tested this conflict resolution.
Change-Id: I5aed3f0c978976c499b532c816d81196cb11e3a1
This commit is contained in:
Tony
2017-06-02 19:33:49 -07:00
4 changed files with 81 additions and 39 deletions
+2 -1
View File
@@ -82,7 +82,8 @@
<service android:name="com.android.launcher3.dynamicui.ColorExtractionService" <service android:name="com.android.launcher3.dynamicui.ColorExtractionService"
android:exported="false" android:exported="false"
android:process=":wallpaper_chooser"> android:process=":wallpaper_chooser"
android:permission="android.permission.BIND_JOB_SERVICE">
</service> </service>
<service <service
+2
View File
@@ -110,6 +110,8 @@ public final class Utilities {
// An intent extra to indicate the horizontal scroll of the wallpaper. // An intent extra to indicate the horizontal scroll of the wallpaper.
public static final String EXTRA_WALLPAPER_OFFSET = "com.android.launcher3.WALLPAPER_OFFSET"; public static final String EXTRA_WALLPAPER_OFFSET = "com.android.launcher3.WALLPAPER_OFFSET";
public static final int COLOR_EXTRACTION_JOB_ID = 1;
// These values are same as that in {@link AsyncTask}. // These values are same as that in {@link AsyncTask}.
private static final int CPU_COUNT = Runtime.getRuntime().availableProcessors(); private static final int CPU_COUNT = Runtime.getRuntime().availableProcessors();
private static final int CORE_POOL_SIZE = CPU_COUNT + 1; private static final int CORE_POOL_SIZE = CPU_COUNT + 1;
@@ -17,9 +17,9 @@
package com.android.launcher3.dynamicui; package com.android.launcher3.dynamicui;
import android.annotation.TargetApi; import android.annotation.TargetApi;
import android.app.IntentService;
import android.app.WallpaperManager; import android.app.WallpaperManager;
import android.content.Intent; import android.app.job.JobParameters;
import android.app.job.JobService;
import android.graphics.Bitmap; import android.graphics.Bitmap;
import android.graphics.BitmapFactory; import android.graphics.BitmapFactory;
import android.graphics.BitmapRegionDecoder; import android.graphics.BitmapRegionDecoder;
@@ -27,6 +27,8 @@ import android.graphics.Rect;
import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.BitmapDrawable;
import android.os.Build; import android.os.Build;
import android.os.Bundle; import android.os.Bundle;
import android.os.Handler;
import android.os.HandlerThread;
import android.os.ParcelFileDescriptor; import android.os.ParcelFileDescriptor;
import android.support.v7.graphics.Palette; import android.support.v7.graphics.Palette;
import android.util.Log; import android.util.Log;
@@ -42,53 +44,84 @@ import java.io.IOException;
/** /**
* Extracts colors from the wallpaper, and saves results to {@link LauncherProvider}. * Extracts colors from the wallpaper, and saves results to {@link LauncherProvider}.
*/ */
public class ColorExtractionService extends IntentService { public class ColorExtractionService extends JobService {
private static final String TAG = "ColorExtractionService"; private static final String TAG = "ColorExtractionService";
private static final boolean DEBUG = false;
/** The fraction of the wallpaper to extract colors for use on the hotseat. */ /** The fraction of the wallpaper to extract colors for use on the hotseat. */
private static final float HOTSEAT_FRACTION = 1f / 4; private static final float HOTSEAT_FRACTION = 1f / 4;
public ColorExtractionService() { private HandlerThread mWorkerThread;
super("ColorExtractionService"); private Handler mWorkerHandler;
@Override
public void onCreate() {
super.onCreate();
mWorkerThread = new HandlerThread("ColorExtractionService");
mWorkerThread.start();
mWorkerHandler = new Handler(mWorkerThread.getLooper());
} }
@Override @Override
protected void onHandleIntent(Intent intent) { public void onDestroy() {
WallpaperManager wallpaperManager = WallpaperManager.getInstance(this); super.onDestroy();
int wallpaperId = ExtractionUtils.getWallpaperId(wallpaperManager); mWorkerThread.quit();
}
ExtractedColors extractedColors = new ExtractedColors(); @Override
if (wallpaperManager.getWallpaperInfo() != null) { public boolean onStartJob(final JobParameters jobParameters) {
// We can't extract colors from live wallpapers, so just use the default color always. if (DEBUG) Log.d(TAG, "onStartJob");
extractedColors.updateHotseatPalette(null); mWorkerHandler.post(new Runnable() {
@Override
public void run() {
WallpaperManager wallpaperManager = WallpaperManager.getInstance(
ColorExtractionService.this);
int wallpaperId = ExtractionUtils.getWallpaperId(wallpaperManager);
if (FeatureFlags.QSB_IN_HOTSEAT || FeatureFlags.LAUNCHER3_GRADIENT_ALL_APPS) { ExtractedColors extractedColors = new ExtractedColors();
extractedColors.updateWallpaperThemePalette(null); if (wallpaperManager.getWallpaperInfo() != null) {
// We can't extract colors from live wallpapers; always use the default color.
extractedColors.updateHotseatPalette(null);
if (FeatureFlags.QSB_IN_HOTSEAT || FeatureFlags.LAUNCHER3_GRADIENT_ALL_APPS) {
extractedColors.updateWallpaperThemePalette(null);
}
} else {
// We extract colors for the hotseat and status bar separately,
// since they only consider part of the wallpaper.
extractedColors.updateHotseatPalette(getHotseatPalette());
if (FeatureFlags.LIGHT_STATUS_BAR) {
extractedColors.updateStatusBarPalette(getStatusBarPalette());
}
if (FeatureFlags.QSB_IN_HOTSEAT || FeatureFlags.LAUNCHER3_GRADIENT_ALL_APPS) {
extractedColors.updateWallpaperThemePalette(getWallpaperPalette());
}
}
// Save the extracted colors and wallpaper id to LauncherProvider.
String colorsString = extractedColors.encodeAsString();
Bundle extras = new Bundle();
extras.putInt(LauncherSettings.Settings.EXTRA_WALLPAPER_ID, wallpaperId);
extras.putString(LauncherSettings.Settings.EXTRA_EXTRACTED_COLORS, colorsString);
getContentResolver().call(
LauncherSettings.Settings.CONTENT_URI,
LauncherSettings.Settings.METHOD_SET_EXTRACTED_COLORS_AND_WALLPAPER_ID,
null, extras);
jobFinished(jobParameters, false /* needsReschedule */);
if (DEBUG) Log.d(TAG, "job finished!");
} }
} else { });
// We extract colors for the hotseat and status bar separately, return true;
// since they only consider part of the wallpaper. }
extractedColors.updateHotseatPalette(getHotseatPalette());
if (FeatureFlags.LIGHT_STATUS_BAR) { @Override
extractedColors.updateStatusBarPalette(getStatusBarPalette()); public boolean onStopJob(JobParameters jobParameters) {
} if (DEBUG) Log.d(TAG, "onStopJob");
mWorkerHandler.removeCallbacksAndMessages(null);
if (FeatureFlags.QSB_IN_HOTSEAT || FeatureFlags.LAUNCHER3_GRADIENT_ALL_APPS) { return true;
extractedColors.updateWallpaperThemePalette(getWallpaperPalette());
}
}
// Save the extracted colors and wallpaper id to LauncherProvider.
String colorsString = extractedColors.encodeAsString();
Bundle extras = new Bundle();
extras.putInt(LauncherSettings.Settings.EXTRA_WALLPAPER_ID, wallpaperId);
extras.putString(LauncherSettings.Settings.EXTRA_EXTRACTED_COLORS, colorsString);
getContentResolver().call(
LauncherSettings.Settings.CONTENT_URI,
LauncherSettings.Settings.METHOD_SET_EXTRACTED_COLORS_AND_WALLPAPER_ID,
null, extras);
} }
@TargetApi(Build.VERSION_CODES.N) @TargetApi(Build.VERSION_CODES.N)
@@ -18,8 +18,10 @@ package com.android.launcher3.dynamicui;
import android.annotation.TargetApi; import android.annotation.TargetApi;
import android.app.WallpaperManager; import android.app.WallpaperManager;
import android.app.job.JobInfo;
import android.app.job.JobScheduler;
import android.content.ComponentName;
import android.content.Context; import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences; import android.content.SharedPreferences;
import android.graphics.Color; import android.graphics.Color;
import android.os.Build; import android.os.Build;
@@ -58,7 +60,11 @@ public class ExtractionUtils {
/** Starts the {@link ColorExtractionService} without checking the wallpaper id */ /** Starts the {@link ColorExtractionService} without checking the wallpaper id */
public static void startColorExtractionService(Context context) { public static void startColorExtractionService(Context context) {
context.startService(new Intent(context, ColorExtractionService.class)); JobScheduler jobScheduler = (JobScheduler) context.getSystemService(
Context.JOB_SCHEDULER_SERVICE);
jobScheduler.schedule(new JobInfo.Builder(Utilities.COLOR_EXTRACTION_JOB_ID,
new ComponentName(context, ColorExtractionService.class))
.setMinimumLatency(0).build());
} }
private static boolean hasWallpaperIdChanged(Context context) { private static boolean hasWallpaperIdChanged(Context context) {