diff --git a/res/drawable-hdpi/screenpanel.9.png b/res/drawable-hdpi/screenpanel.9.png index bf806c3ecb..f7ae011626 100644 Binary files a/res/drawable-hdpi/screenpanel.9.png and b/res/drawable-hdpi/screenpanel.9.png differ diff --git a/res/drawable-hdpi/screenpanel_hover.9.png b/res/drawable-hdpi/screenpanel_hover.9.png index 1726837542..ac8e83dbd7 100644 Binary files a/res/drawable-hdpi/screenpanel_hover.9.png and b/res/drawable-hdpi/screenpanel_hover.9.png differ diff --git a/res/drawable-mdpi/screenpanel.9.png b/res/drawable-mdpi/screenpanel.9.png index a9bed9f488..c2779fcf33 100644 Binary files a/res/drawable-mdpi/screenpanel.9.png and b/res/drawable-mdpi/screenpanel.9.png differ diff --git a/res/drawable-mdpi/screenpanel_hover.9.png b/res/drawable-mdpi/screenpanel_hover.9.png index ce12197985..70b30785fb 100644 Binary files a/res/drawable-mdpi/screenpanel_hover.9.png and b/res/drawable-mdpi/screenpanel_hover.9.png differ diff --git a/res/drawable-xhdpi/screenpanel.9.png b/res/drawable-xhdpi/screenpanel.9.png index fe604ba36c..53a7812060 100644 Binary files a/res/drawable-xhdpi/screenpanel.9.png and b/res/drawable-xhdpi/screenpanel.9.png differ diff --git a/res/drawable-xhdpi/screenpanel_hover.9.png b/res/drawable-xhdpi/screenpanel_hover.9.png index 3c05dc5d59..a2e200f131 100644 Binary files a/res/drawable-xhdpi/screenpanel_hover.9.png and b/res/drawable-xhdpi/screenpanel_hover.9.png differ diff --git a/res/drawable-xxhdpi/screenpanel.9.png b/res/drawable-xxhdpi/screenpanel.9.png index 2769bddb85..2d1395479f 100644 Binary files a/res/drawable-xxhdpi/screenpanel.9.png and b/res/drawable-xxhdpi/screenpanel.9.png differ diff --git a/res/drawable-xxhdpi/screenpanel_hover.9.png b/res/drawable-xxhdpi/screenpanel_hover.9.png index e36d293de9..369fc44e1e 100644 Binary files a/res/drawable-xxhdpi/screenpanel_hover.9.png and b/res/drawable-xxhdpi/screenpanel_hover.9.png differ diff --git a/res/layout-land/longpress_cling.xml b/res/layout-land/longpress_cling.xml index d1b30a8223..93bbc077a9 100644 --- a/res/layout-land/longpress_cling.xml +++ b/res/layout-land/longpress_cling.xml @@ -4,6 +4,7 @@ android:id="@+id/longpress_cling" android:layout_width="match_parent" android:layout_height="match_parent" + android:background="@color/cling_scrim_background" android:orientation="vertical" > + android:layout_height="match_parent" + android:background="@color/cling_scrim_background" > #DAFF0000 #DA0099CC + #80000000 #20000000 #80c6c5c5 diff --git a/src/com/android/launcher3/Launcher.java b/src/com/android/launcher3/Launcher.java index 7098760b30..37a7f5cc83 100644 --- a/src/com/android/launcher3/Launcher.java +++ b/src/com/android/launcher3/Launcher.java @@ -73,6 +73,7 @@ import android.text.TextUtils; import android.text.method.TextKeyListener; import android.util.DisplayMetrics; import android.util.Log; +import android.view.ContextThemeWrapper; import android.view.Display; import android.view.Gravity; import android.view.HapticFeedbackConstants; @@ -2555,7 +2556,7 @@ public class Launcher extends Activity private void showBrokenAppInstallDialog(final String packageName, DialogInterface.OnClickListener onSearchClickListener) { - new AlertDialog.Builder(this) + new AlertDialog.Builder(new ContextThemeWrapper(this, android.R.style.Theme_DeviceDefault)) .setTitle(R.string.abandoned_promises_title) .setMessage(R.string.abandoned_promise_explanation) .setPositiveButton(R.string.abandoned_search, onSearchClickListener)