1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-19 16:13:46 +02:00

Moved launcher icon to mipmap resource folders for better scaling on modern devices.

This commit is contained in:
Christophe Beyls 2015-06-08 18:11:01 +02:00
parent aa1a4f0148
commit 0c2ddc73e0
7 changed files with 7 additions and 3 deletions

View file

@ -27,7 +27,7 @@
android:name="be.digitalia.fosdem.FosdemApplication"
android:allowBackup="true"
android:hardwareAccelerated="true"
android:icon="@drawable/ic_launcher"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity

View file

@ -562,8 +562,12 @@ public class MainActivity extends ActionBarActivity implements ListView.OnItemCl
title = getString(R.string.app_name);
}
return new AlertDialog.Builder(context).setTitle(title).setIcon(R.drawable.ic_launcher).setMessage(getResources().getText(R.string.about_text))
.setPositiveButton(android.R.string.ok, null).create();
return new AlertDialog.Builder(context)
.setTitle(title)
.setIcon(R.mipmap.ic_launcher)
.setMessage(getResources().getText(R.string.about_text))
.setPositiveButton(android.R.string.ok, null)
.create();
}
@Override

View file

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View file

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

Before

Width:  |  Height:  |  Size: 6 KiB

After

Width:  |  Height:  |  Size: 6 KiB

View file

Before

Width:  |  Height:  |  Size: 9.2 KiB

After

Width:  |  Height:  |  Size: 9.2 KiB

View file

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB