Update launcher icon.

This commit is contained in:
Brian Pellin
2010-06-05 23:42:42 -05:00
parent d19dedb9c8
commit 82773e9b3a
9 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@
android:largeScreens="true"
android:anyDensity="true"
/>
<application android:label="@string/app_name" android:icon="@drawable/keepassdroid_launcher">
<application android:label="@string/app_name" android:icon="@drawable/launcher">
<activity android:name=".KeePass"
android:label="@string/app_name">
<intent-filter>

BIN
local/hdpi.psd Normal file

Binary file not shown.

BIN
local/ldpi.psd Normal file

Binary file not shown.

BIN
local/mdpi.psd Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

BIN
res/drawable/launcher.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -185,7 +185,7 @@ public class EntryActivity extends LockCloseActivity {
private Notification getNotification(String intentText, int descResId) {
String desc = getString(descResId);
Notification notify = new Notification(R.drawable.keepassdroid_launcher, desc, System.currentTimeMillis());
Notification notify = new Notification(R.drawable.launcher, desc, System.currentTimeMillis());
Intent intent = new Intent(intentText);
PendingIntent pending = PendingIntent.getBroadcast(this, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT);