(FIX #594) add thumbnail for ESEA
Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
This commit is contained in:
parent
939b60ce5f
commit
d324e47011
2 changed files with 48 additions and 35 deletions
|
@ -28,12 +28,41 @@ import android.graphics.Bitmap;
|
||||||
import android.graphics.BitmapFactory;
|
import android.graphics.BitmapFactory;
|
||||||
import android.graphics.Canvas;
|
import android.graphics.Canvas;
|
||||||
import android.graphics.drawable.Drawable;
|
import android.graphics.drawable.Drawable;
|
||||||
|
|
||||||
import androidx.appcompat.app.AppCompatDelegate;
|
import androidx.appcompat.app.AppCompatDelegate;
|
||||||
import androidx.appcompat.content.res.AppCompatResources;
|
import androidx.appcompat.content.res.AppCompatResources;
|
||||||
|
|
||||||
import org.shadowice.flocke.andotp.R;
|
import org.shadowice.flocke.andotp.R;
|
||||||
|
|
||||||
public class EntryThumbnail {
|
public class EntryThumbnail {
|
||||||
|
public static Bitmap getThumbnailGraphic(Context context, String issuer, String label, int size, EntryThumbnails thumbnail) {
|
||||||
|
AppCompatDelegate.setCompatVectorFromResourcesEnabled(true);
|
||||||
|
|
||||||
|
if (thumbnail == EntryThumbnails.Default && size > 0) {
|
||||||
|
LetterBitmap letterBitmap = new LetterBitmap(context);
|
||||||
|
String letterSrc = issuer.isEmpty() ? label : issuer;
|
||||||
|
return letterBitmap.getLetterTile(letterSrc, letterSrc, size, size);
|
||||||
|
} else if (thumbnail != EntryThumbnails.Default) {
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (thumbnail.getAssetType() == AssetType.Vector) {
|
||||||
|
Drawable drawable = AppCompatResources.getDrawable(context, thumbnail.getResource());
|
||||||
|
Bitmap bitmap = Bitmap.createBitmap(drawable.getMinimumWidth(), drawable.getMinimumHeight(), Bitmap.Config.ARGB_8888);
|
||||||
|
Canvas canvas = new Canvas(bitmap);
|
||||||
|
drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());
|
||||||
|
drawable.draw(canvas);
|
||||||
|
return bitmap;
|
||||||
|
} else {
|
||||||
|
return BitmapFactory.decodeResource(context.getResources(), thumbnail.getResource());
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return BitmapFactory.decodeResource(context.getResources(), R.mipmap.ic_launcher_round);
|
||||||
|
}
|
||||||
|
|
||||||
private enum AssetType {
|
private enum AssetType {
|
||||||
Bitmap,
|
Bitmap,
|
||||||
Vector
|
Vector
|
||||||
|
@ -112,6 +141,7 @@ public class EntryThumbnail {
|
||||||
ElectronicArts(R.drawable.thumb_electronic_arts),
|
ElectronicArts(R.drawable.thumb_electronic_arts),
|
||||||
Email(R.drawable.thumb_email),
|
Email(R.drawable.thumb_email),
|
||||||
EpicGames(R.drawable.thumb_epic_games),
|
EpicGames(R.drawable.thumb_epic_games),
|
||||||
|
ESEA(R.drawable.thumb_esea),
|
||||||
Etsy(R.drawable.thumb_etsy),
|
Etsy(R.drawable.thumb_etsy),
|
||||||
Eveonline(R.drawable.thumb_eveonline),
|
Eveonline(R.drawable.thumb_eveonline),
|
||||||
Evernote(R.drawable.thumb_evernote),
|
Evernote(R.drawable.thumb_evernote),
|
||||||
|
@ -314,45 +344,18 @@ public class EntryThumbnail {
|
||||||
this.assetType = assetType;
|
this.assetType = assetType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getResource() {
|
|
||||||
return resource;
|
|
||||||
}
|
|
||||||
public AssetType getAssetType() {
|
|
||||||
return assetType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static EntryThumbnails valueOfIgnoreCase(String thumbnail) {
|
public static EntryThumbnails valueOfIgnoreCase(String thumbnail) {
|
||||||
for (EntryThumbnails entryThumbnails : values())
|
for (EntryThumbnails entryThumbnails : values())
|
||||||
if (entryThumbnails.name().equalsIgnoreCase(thumbnail)) return entryThumbnails;
|
if (entryThumbnails.name().equalsIgnoreCase(thumbnail)) return entryThumbnails;
|
||||||
throw new IllegalArgumentException();
|
throw new IllegalArgumentException();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int getResource() {
|
||||||
|
return resource;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Bitmap getThumbnailGraphic(Context context, String issuer, String label, int size, EntryThumbnails thumbnail) {
|
public AssetType getAssetType() {
|
||||||
AppCompatDelegate.setCompatVectorFromResourcesEnabled(true);
|
return assetType;
|
||||||
|
|
||||||
if (thumbnail == EntryThumbnails.Default && size > 0) {
|
|
||||||
LetterBitmap letterBitmap = new LetterBitmap(context);
|
|
||||||
String letterSrc = issuer.isEmpty() ? label : issuer;
|
|
||||||
return letterBitmap.getLetterTile(letterSrc, letterSrc, size, size);
|
|
||||||
} else if (thumbnail != EntryThumbnails.Default) {
|
|
||||||
|
|
||||||
try {
|
|
||||||
if (thumbnail.getAssetType() == AssetType.Vector) {
|
|
||||||
Drawable drawable = AppCompatResources.getDrawable(context, thumbnail.getResource());
|
|
||||||
Bitmap bitmap = Bitmap.createBitmap(drawable.getMinimumWidth(), drawable.getMinimumHeight(), Bitmap.Config.ARGB_8888);
|
|
||||||
Canvas canvas = new Canvas(bitmap);
|
|
||||||
drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());
|
|
||||||
drawable.draw(canvas);
|
|
||||||
return bitmap;
|
|
||||||
} else {
|
|
||||||
return BitmapFactory.decodeResource(context.getResources(), thumbnail.getResource());
|
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return BitmapFactory.decodeResource(context.getResources(), R.mipmap.ic_launcher_round);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
10
app/src/main/res/drawable/thumb_esea.xml
Normal file
10
app/src/main/res/drawable/thumb_esea.xml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="200dp"
|
||||||
|
android:height="153.88dp"
|
||||||
|
android:viewportWidth="200"
|
||||||
|
android:viewportHeight="153.88">
|
||||||
|
<path
|
||||||
|
android:fillColor="#0e9648"
|
||||||
|
android:pathData="M117.11,0 L74.59,56.22 0,57.36 48.59,94.60 8.68,151.93 79.44,117.86 127.03,153.88V94.60L200,58.57 56.20,92.08c6.51,-6.92 10.92,-12.35 13.24,-16.29 2.31,-3.93 4.03,-8.89 5.14,-14.88l46.60,-1.25z"
|
||||||
|
android:strokeWidth="2.12" />
|
||||||
|
</vector>
|
Loading…
Reference in a new issue