OSDN Git Service

Move icons to mipmap.
authorYing Wang <wangying@google.com>
Tue, 23 Nov 2010 20:03:43 +0000 (12:03 -0800)
committerYing Wang <wangying@google.com>
Tue, 23 Nov 2010 20:03:43 +0000 (12:03 -0800)
Change-Id: If3bd32658300cb028411d1aa7a3f56d8c1d234eb

AndroidManifest.xml
res/layout/settings_actionbar.xml
res/mipmap-hdpi/ic_launcher_settings.png [moved from res/drawable-hdpi/ic_launcher_settings.png with 100% similarity]
res/mipmap-mdpi/ic_launcher_settings.png [moved from res/drawable-mdpi/ic_launcher_settings.png with 100% similarity]
src/com/android/settings/CreateShortcut.java

index 38579b6..1638c90 100644 (file)
@@ -43,7 +43,7 @@
     <uses-permission android:name="android.permission.MOVE_PACKAGE" />
 
     <application android:label="@string/settings_label"
-            android:icon="@drawable/ic_launcher_settings"
+            android:icon="@mipmap/ic_launcher_settings"
             android:taskAffinity=""
             android:hardwareAccelerated="true">
 
index 6388025..711a0a1 100644 (file)
@@ -23,7 +23,7 @@
         android:layout_height="match_parent">
 
     <!-- ImageView
-            android:src="@drawable/ic_launcher_settings"
+            android:src="@mipmap/ic_launcher_settings"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:layout_gravity="center_vertical"
index 5ca6370..0312a4b 100644 (file)
@@ -38,7 +38,7 @@ public class CreateShortcut extends LauncherActivity {
         shortcutIntent.setFlags(Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
         Intent intent = new Intent();
         intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
-                Intent.ShortcutIconResource.fromContext(this, R.drawable.ic_launcher_settings));
+                Intent.ShortcutIconResource.fromContext(this, R.mipmap.ic_launcher_settings));
         intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
         intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, itemForPosition(position).label);
         setResult(RESULT_OK, intent);