dandelion/app/src/main/java/net/gsantner/opoc/util/ContextUtils.java

570 lines
22 KiB
Java
Raw Normal View History

2017-05-29 19:05:37 +02:00
/*
2017-08-24 13:34:32 +02:00
* ------------------------------------------------------------------------------
2017-10-31 18:12:02 +01:00
* Gregor Santner <gsantner.net> wrote this. You can do whatever you want
2017-08-24 13:34:32 +02:00
* with it. If we meet some day, and you think it is worth it, you can buy me a
* coke in return. Provided as is without any kind of warranty. Do not blame or
* sue me if something goes wrong. No attribution required. - Gregor Santner
2017-05-29 19:05:37 +02:00
*
2017-08-24 13:34:32 +02:00
* License: Creative Commons Zero (CC0 1.0)
2017-05-29 19:05:37 +02:00
* http://creativecommons.org/publicdomain/zero/1.0/
* ----------------------------------------------------------------------------
*/
2017-09-09 17:09:04 +02:00
package net.gsantner.opoc.util;
2017-05-29 19:05:37 +02:00
import android.annotation.SuppressLint;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.ActivityNotFoundException;
2017-10-28 09:56:05 +02:00
import android.content.ClipData;
2017-05-29 19:05:37 +02:00
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.content.res.ColorStateList;
import android.content.res.Configuration;
2017-08-24 13:34:32 +02:00
import android.content.res.Resources;
2017-09-09 17:09:04 +02:00
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Color;
2017-09-09 17:09:04 +02:00
import android.graphics.Matrix;
2017-10-28 09:56:05 +02:00
import android.graphics.Paint;
import android.graphics.Rect;
2017-09-09 17:09:04 +02:00
import android.graphics.drawable.BitmapDrawable;
2017-05-29 19:05:37 +02:00
import android.graphics.drawable.Drawable;
2017-09-09 17:09:04 +02:00
import android.graphics.drawable.VectorDrawable;
2017-05-29 19:05:37 +02:00
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.net.Uri;
2017-09-09 17:09:04 +02:00
import android.os.Build;
import android.support.annotation.ColorInt;
2017-05-29 19:05:37 +02:00
import android.support.annotation.ColorRes;
import android.support.annotation.DrawableRes;
2017-09-09 17:09:04 +02:00
import android.support.annotation.Nullable;
2017-05-29 19:05:37 +02:00
import android.support.annotation.RawRes;
import android.support.annotation.StringRes;
2017-09-09 17:09:04 +02:00
import android.support.graphics.drawable.VectorDrawableCompat;
2017-05-29 19:05:37 +02:00
import android.support.v4.content.ContextCompat;
2017-09-09 17:09:04 +02:00
import android.support.v4.graphics.drawable.DrawableCompat;
2017-05-29 19:05:37 +02:00
import android.support.v7.widget.AppCompatButton;
2017-07-29 04:44:28 +02:00
import android.text.Html;
import android.text.SpannableString;
import android.text.Spanned;
2017-05-29 19:05:37 +02:00
import android.text.TextUtils;
2017-07-29 04:44:28 +02:00
import android.text.method.LinkMovementMethod;
2017-05-29 19:05:37 +02:00
import android.util.DisplayMetrics;
import android.view.Menu;
import android.view.MenuItem;
2017-09-09 17:09:04 +02:00
import android.view.View;
import android.widget.ImageView;
2017-07-29 04:44:28 +02:00
import android.widget.TextView;
2017-09-09 17:09:04 +02:00
import android.widget.Toast;
2017-05-29 19:05:37 +02:00
import net.gsantner.opoc.format.markdown.SimpleMarkdownParser;
2017-05-29 19:05:37 +02:00
import java.io.BufferedReader;
2017-09-09 17:09:04 +02:00
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
2017-05-29 19:05:37 +02:00
import java.io.IOException;
import java.io.InputStreamReader;
import java.lang.reflect.Method;
2017-05-29 19:05:37 +02:00
import java.util.Locale;
2017-09-09 17:09:04 +02:00
import static android.graphics.Bitmap.CompressFormat;
@SuppressWarnings({"WeakerAccess", "unused", "SameParameterValue", "SpellCheckingInspection", "deprecation", "ObsoleteSdkInt", "ConstantConditions", "UnusedReturnValue"})
2017-09-09 17:09:04 +02:00
public class ContextUtils {
2017-08-09 17:23:19 +02:00
//########################
//## Members, Constructors
//########################
protected Context _context;
2017-05-29 19:05:37 +02:00
2017-09-09 17:09:04 +02:00
public ContextUtils(Context context) {
2017-08-09 17:23:19 +02:00
_context = context;
2017-05-29 19:05:37 +02:00
}
public Context context() {
return _context;
2017-05-29 19:05:37 +02:00
}
//########################
//## Resources
//########################
2017-08-09 17:23:19 +02:00
static class ResType {
public static final String DRAWABLE = "drawable";
public static final String STRING = "string";
public static final String PLURAL = "plural";
public static final String COLOR = "color";
public static final String STYLE = "style";
public static final String ARRAY = "array";
public static final String DIMEN = "dimen";
public static final String MENU = "menu";
2018-03-05 23:37:24 +01:00
public static final String BOOL = "bool";
2017-08-09 17:23:19 +02:00
public static final String RAW = "raw";
2017-05-29 19:05:37 +02:00
}
2018-03-05 23:37:24 +01:00
public String rstr(@StringRes int strResId) {
return _context.getString(strResId);
}
2018-03-05 23:37:24 +01:00
public String rstr(String strResKey) {
return rstr(getResId(ResType.STRING, strResKey));
}
public Drawable rdrawable(@DrawableRes int resId) {
2017-08-09 17:23:19 +02:00
return ContextCompat.getDrawable(_context, resId);
2017-05-29 19:05:37 +02:00
}
2018-03-05 23:37:24 +01:00
public int rcolor(@ColorRes int resId) {
2017-08-09 17:23:19 +02:00
return ContextCompat.getColor(_context, resId);
2017-05-29 19:05:37 +02:00
}
public int getResId(final String type, final String name) {
return _context.getResources().getIdentifier(name, type, _context.getPackageName());
}
public boolean areResIdsAvailable(final String type, final String... names) {
for (String name : names) {
if (getResId(type, name) == 0) {
return false;
}
}
return true;
2017-05-29 19:05:37 +02:00
}
//########################
//## Methods
//########################
2017-05-29 19:05:37 +02:00
public String colorToHexString(int intColor) {
return String.format("#%06X", 0xFFFFFF & intColor);
}
public String getAppVersionName() {
try {
2017-08-09 17:23:19 +02:00
PackageManager manager = _context.getPackageManager();
PackageInfo info = manager.getPackageInfo(_context.getPackageName(), 0);
2017-05-29 19:05:37 +02:00
return info.versionName;
} catch (PackageManager.NameNotFoundException e) {
e.printStackTrace();
2017-08-09 17:23:19 +02:00
return "?";
2017-05-29 19:05:37 +02:00
}
}
2017-08-09 17:23:19 +02:00
public void openWebpageInExternalBrowser(final String url) {
2017-05-29 19:05:37 +02:00
Uri uri = Uri.parse(url);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
try {
_context.startActivity(intent);
} catch (ActivityNotFoundException e) {
e.printStackTrace();
}
2017-08-09 17:23:19 +02:00
}
/**
2018-03-05 23:37:24 +01:00
* Get field from ${applicationId}.BuildConfig
2017-08-24 13:34:32 +02:00
* May be helpful in libraries, where a access to
* BuildConfig would only get values of the library
2018-03-05 23:37:24 +01:00
* rather than the app ones. It awaits a string resource
* of the package set in manifest (root element).
* Falls back to applicationId of the app which may differ from manifest.
2017-08-09 17:23:19 +02:00
*/
public Object getBuildConfigValue(String fieldName) {
2018-03-05 23:37:24 +01:00
String pkg;
2017-08-09 17:23:19 +02:00
try {
2018-03-05 23:37:24 +01:00
pkg = rstr("manifest_package_id");
} catch (Resources.NotFoundException ex) {
pkg = _context.getPackageName();
}
pkg += ".BuildConfig";
try {
Class<?> c = Class.forName(pkg);
2017-08-24 13:34:32 +02:00
return c.getField(fieldName).get(null);
} catch (Exception e) {
2017-08-09 17:23:19 +02:00
e.printStackTrace();
2017-08-24 13:34:32 +02:00
return null;
2017-08-09 17:23:19 +02:00
}
}
2018-03-05 23:37:24 +01:00
public boolean bcbool(String fieldName, boolean defaultValue) {
2017-08-09 17:23:19 +02:00
Object field = getBuildConfigValue(fieldName);
if (field != null && field instanceof Boolean) {
return (Boolean) field;
}
return defaultValue;
}
2018-03-05 23:37:24 +01:00
public String bcstr(String fieldName, String defaultValue) {
Object field = getBuildConfigValue(fieldName);
if (field != null && field instanceof String) {
return (String) field;
}
return defaultValue;
}
2017-08-09 17:23:19 +02:00
public boolean isGooglePlayBuild() {
2018-03-05 23:37:24 +01:00
return bcbool("IS_GPLAY_BUILD", true);
2017-05-29 19:05:37 +02:00
}
2017-08-09 17:23:19 +02:00
public boolean isFossBuild() {
2018-03-05 23:37:24 +01:00
return bcbool("IS_FOSS_BUILD", false);
2017-08-09 17:23:19 +02:00
}
// Requires donate__bitcoin_* resources (see below) to be available as string resource
public void showDonateBitcoinRequest(@StringRes final int strResBitcoinId, @StringRes final int strResBitcoinAmount, @StringRes final int strResBitcoinMessage, @StringRes final int strResAlternativeDonateUrl) {
if (!isGooglePlayBuild()) {
2017-05-29 19:05:37 +02:00
String btcUri = String.format("bitcoin:%s?amount=%s&label=%s&message=%s",
2018-03-05 23:37:24 +01:00
rstr(strResBitcoinId), rstr(strResBitcoinAmount),
rstr(strResBitcoinMessage), rstr(strResBitcoinMessage));
2017-05-29 19:05:37 +02:00
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(btcUri));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
try {
2017-08-09 17:23:19 +02:00
_context.startActivity(intent);
2017-05-29 19:05:37 +02:00
} catch (ActivityNotFoundException e) {
2018-03-05 23:37:24 +01:00
openWebpageInExternalBrowser(rstr(strResAlternativeDonateUrl));
2017-05-29 19:05:37 +02:00
}
}
}
public String readTextfileFromRawRes(@RawRes int rawResId, String linePrefix, String linePostfix) {
StringBuilder sb = new StringBuilder();
BufferedReader br = null;
String line;
linePrefix = linePrefix == null ? "" : linePrefix;
linePostfix = linePostfix == null ? "" : linePostfix;
try {
2017-08-09 17:23:19 +02:00
br = new BufferedReader(new InputStreamReader(_context.getResources().openRawResource(rawResId)));
2017-05-29 19:05:37 +02:00
while ((line = br.readLine()) != null) {
sb.append(linePrefix);
sb.append(line);
sb.append(linePostfix);
sb.append("\n");
}
} catch (Exception ignored) {
} finally {
if (br != null) {
try {
br.close();
} catch (IOException ignored) {
}
}
}
return sb.toString();
}
@SuppressLint("RestrictedApi")
2017-08-24 13:34:32 +02:00
@SuppressWarnings("RestrictedApi")
2017-05-29 19:05:37 +02:00
public void setTintColorOfButton(AppCompatButton button, @ColorRes int resColor) {
button.setSupportBackgroundTintList(ColorStateList.valueOf(
2018-03-05 23:37:24 +01:00
rcolor(resColor)
2017-05-29 19:05:37 +02:00
));
}
2017-10-28 09:56:05 +02:00
@SuppressLint("MissingPermission") // ACCESS_NETWORK_STATE required
2017-05-29 19:05:37 +02:00
public boolean isConnectedToInternet() {
2017-10-28 09:56:05 +02:00
ConnectivityManager con = (ConnectivityManager) _context.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo activeNetInfo = con == null ? null : con.getActiveNetworkInfo();
2017-05-29 19:05:37 +02:00
return activeNetInfo != null && activeNetInfo.isConnectedOrConnecting();
}
2017-09-09 17:09:04 +02:00
public boolean isConnectedToInternet(@Nullable @StringRes Integer warnMessageStringRes) {
final boolean result = isConnectedToInternet();
if (!result && warnMessageStringRes != null)
Toast.makeText(_context, _context.getString(warnMessageStringRes), Toast.LENGTH_SHORT).show();
return result;
}
2017-05-29 19:05:37 +02:00
public void restartApp(Class classToStartupWith) {
2017-08-09 17:23:19 +02:00
Intent restartIntent = new Intent(_context, classToStartupWith);
PendingIntent restartIntentP = PendingIntent.getActivity(_context, 555,
2017-05-29 19:05:37 +02:00
restartIntent, PendingIntent.FLAG_CANCEL_CURRENT);
2017-08-09 17:23:19 +02:00
AlarmManager mgr = (AlarmManager) _context.getSystemService(Context.ALARM_SERVICE);
2017-05-29 19:05:37 +02:00
mgr.set(AlarmManager.RTC, System.currentTimeMillis() + 100, restartIntentP);
System.exit(0);
}
public String loadMarkdownForTextViewFromRaw(@RawRes int rawMdFile, String prepend) {
try {
return new SimpleMarkdownParser()
2017-08-09 17:23:19 +02:00
.parse(_context.getResources().openRawResource(rawMdFile),
2017-07-29 04:44:28 +02:00
prepend, SimpleMarkdownParser.FILTER_ANDROID_TEXTVIEW)
2018-03-05 23:37:24 +01:00
.replaceColor("#000001", rcolor(getResId(ResType.COLOR, "accent")))
2017-05-29 19:05:37 +02:00
.removeMultiNewlines().replaceBulletCharacter("*").getHtml();
} catch (IOException e) {
e.printStackTrace();
return "";
}
}
2017-07-29 04:44:28 +02:00
public void setHtmlToTextView(TextView textView, String html) {
textView.setMovementMethod(LinkMovementMethod.getInstance());
textView.setText(new SpannableString(htmlToSpanned(html)));
2017-07-29 04:44:28 +02:00
}
2017-05-29 19:05:37 +02:00
public double getEstimatedScreenSizeInches() {
2017-08-09 17:23:19 +02:00
DisplayMetrics dm = _context.getResources().getDisplayMetrics();
2017-05-29 19:05:37 +02:00
double density = dm.density * 160;
double x = Math.pow(dm.widthPixels / density, 2);
double y = Math.pow(dm.heightPixels / density, 2);
double screenInches = Math.sqrt(x + y) * 1.16; // 1.16 = est. Nav/Statusbar
screenInches = screenInches < 4.0 ? 4.0 : screenInches;
screenInches = screenInches > 12.0 ? 12.0 : screenInches;
return screenInches;
}
public boolean isInPortraitMode() {
2017-08-09 17:23:19 +02:00
return _context.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT;
2017-05-29 19:05:37 +02:00
}
public Locale getLocaleByAndroidCode(String code) {
if (!TextUtils.isEmpty(code)) {
return code.contains("-r")
? new Locale(code.substring(0, 2), code.substring(4, 6)) // de-rAt
: new Locale(code); // de
}
2017-08-24 13:34:32 +02:00
return Resources.getSystem().getConfiguration().locale;
2017-05-29 19:05:37 +02:00
}
2017-08-24 13:34:32 +02:00
// en/de/de-rAt ; Empty string -> default locale
2017-05-29 19:05:37 +02:00
public void setAppLanguage(String androidLocaleString) {
Locale locale = getLocaleByAndroidCode(androidLocaleString);
2017-08-09 17:23:19 +02:00
Configuration config = _context.getResources().getConfiguration();
2017-08-24 13:34:32 +02:00
config.locale = (locale != null && !androidLocaleString.isEmpty())
? locale : Resources.getSystem().getConfiguration().locale;
2017-08-09 17:23:19 +02:00
_context.getResources().updateConfiguration(config, null);
}
// Find out if color above the given color should be light or dark. true if light
public boolean shouldColorOnTopBeLight(@ColorInt int colorOnBottomInt) {
return 186 > (((0.299 * Color.red(colorOnBottomInt))
+ ((0.587 * Color.green(colorOnBottomInt))
+ (0.114 * Color.blue(colorOnBottomInt)))));
}
@SuppressWarnings("deprecation")
public Spanned htmlToSpanned(String html) {
Spanned result;
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) {
result = Html.fromHtml(html, Html.FROM_HTML_MODE_LEGACY);
} else {
result = Html.fromHtml(html);
}
return result;
}
2017-08-24 13:34:32 +02:00
2017-10-28 09:56:05 +02:00
public void setClipboard(String text) {
if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.HONEYCOMB) {
((android.text.ClipboardManager) _context.getSystemService(Context.CLIPBOARD_SERVICE)).setText(text);
} else {
ClipData clip = ClipData.newPlainText(_context.getPackageName(), text);
((android.content.ClipboardManager) _context.getSystemService(Context.CLIPBOARD_SERVICE)).setPrimaryClip(clip);
}
}
public String[] getClipboard() {
String[] ret;
if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.HONEYCOMB) {
ret = new String[]{((android.text.ClipboardManager) _context.getSystemService(Context.CLIPBOARD_SERVICE)).getText().toString()};
} else {
ClipData data = ((android.content.ClipboardManager) _context.getSystemService(Context.CLIPBOARD_SERVICE)).getPrimaryClip();
ret = new String[data.getItemCount()];
for (int i = 0; i < data.getItemCount() && i < ret.length; i++) {
ret[i] = data.getItemAt(i).getText().toString();
}
}
return ret;
}
2017-08-09 17:23:19 +02:00
public float px2dp(final float px) {
return px / _context.getResources().getDisplayMetrics().density;
}
public float dp2px(final float dp) {
return dp * _context.getResources().getDisplayMetrics().density;
2017-05-29 19:05:37 +02:00
}
2017-09-09 17:09:04 +02:00
public void setViewVisible(View view, boolean visible) {
view.setVisibility(visible ? View.VISIBLE : View.GONE);
}
public static void setDrawableWithColorToImageView(ImageView imageView, @DrawableRes int drawableResId, @ColorRes int colorResId) {
imageView.setImageResource(drawableResId);
imageView.setColorFilter(ContextCompat.getColor(imageView.getContext(), colorResId));
}
public Bitmap drawableToBitmap(Drawable drawable) {
Bitmap bitmap = null;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP && (drawable instanceof VectorDrawable || drawable instanceof VectorDrawableCompat)) {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
drawable = (DrawableCompat.wrap(drawable)).mutate();
}
bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(),
drawable.getIntrinsicHeight(), Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
drawable.draw(canvas);
} else if (drawable instanceof BitmapDrawable) {
bitmap = ((BitmapDrawable) drawable).getBitmap();
}
return bitmap;
}
2017-09-23 20:33:28 +02:00
public Bitmap loadImageFromFilesystem(File imagePath, int maxDimen) {
2017-09-09 17:09:04 +02:00
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
2017-09-23 20:33:28 +02:00
BitmapFactory.decodeFile(imagePath.getAbsolutePath(), options);
2017-09-09 17:09:04 +02:00
options.inSampleSize = calculateInSampleSize(options, maxDimen);
options.inJustDecodeBounds = false;
2017-09-23 20:33:28 +02:00
return BitmapFactory.decodeFile(imagePath.getAbsolutePath(), options);
2017-09-09 17:09:04 +02:00
}
/**
* Calculates the scaling factor so the bitmap is maximal as big as the maxDimen
*
* @param options Bitmap-options that contain the current dimensions of the bitmap
* @param maxDimen Max size of the Bitmap (width or height)
* @return the scaling factor that needs to be applied to the bitmap
*/
public int calculateInSampleSize(BitmapFactory.Options options, int maxDimen) {
2017-10-28 09:56:05 +02:00
// Raw height and width of image
2017-09-09 17:09:04 +02:00
int height = options.outHeight;
int width = options.outWidth;
int inSampleSize = 1;
if (Math.max(height, width) > maxDimen) {
inSampleSize = Math.round(1f * Math.max(height, width) / maxDimen);
}
return inSampleSize;
}
public Bitmap scaleBitmap(Bitmap bitmap, int maxDimen) {
int picSize = Math.min(bitmap.getHeight(), bitmap.getWidth());
float scale = 1.f * maxDimen / picSize;
Matrix matrix = new Matrix();
matrix.postScale(scale, scale);
return Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);
}
2017-09-23 20:33:28 +02:00
public File writeImageToFileJpeg(File imageFile, Bitmap image) {
return writeImageToFile(imageFile, image, Bitmap.CompressFormat.JPEG, 95);
2017-09-09 17:09:04 +02:00
}
2017-09-23 20:33:28 +02:00
public File writeImageToFileDetectFormat(File imageFile, Bitmap image, int quality) {
CompressFormat format = CompressFormat.JPEG;
String lc = imageFile.getAbsolutePath().toLowerCase(Locale.ROOT);
2017-09-23 20:33:28 +02:00
if (lc.endsWith(".png")) {
format = CompressFormat.PNG;
}
if (lc.endsWith(".webp")) {
format = CompressFormat.WEBP;
}
return writeImageToFile(imageFile, image, format, quality);
}
public File writeImageToFile(File imageFile, Bitmap image, CompressFormat format, int quality) {
File folder = new File(imageFile.getParent());
if (folder.exists() || folder.mkdirs()) {
2017-09-09 17:09:04 +02:00
FileOutputStream stream = null;
try {
2017-10-28 09:56:05 +02:00
stream = new FileOutputStream(imageFile); // overwrites this image every time
2017-09-09 17:09:04 +02:00
image.compress(format, quality, stream);
return imageFile;
} catch (FileNotFoundException ignored) {
} finally {
try {
if (stream != null) {
stream.close();
}
} catch (IOException ignored) {
}
}
}
return null;
}
2017-10-28 09:56:05 +02:00
public Bitmap drawTextToDrawable(@DrawableRes int resId, String text, int textSize) {
Resources resources = _context.getResources();
float scale = resources.getDisplayMetrics().density;
Bitmap bitmap = getBitmapFromDrawable(resId);
bitmap = bitmap.copy(bitmap.getConfig(), true);
Canvas canvas = new Canvas(bitmap);
Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
paint.setColor(Color.rgb(61, 61, 61));
paint.setTextSize((int) (textSize * scale));
paint.setShadowLayer(1f, 0f, 1f, Color.WHITE);
Rect bounds = new Rect();
paint.getTextBounds(text, 0, text.length(), bounds);
int x = (bitmap.getWidth() - bounds.width()) / 2;
int y = (bitmap.getHeight() + bounds.height()) / 2;
canvas.drawText(text, x, y, paint);
return bitmap;
}
public Bitmap getBitmapFromDrawable(int drawableId) {
Bitmap bitmap = null;
Drawable drawable = ContextCompat.getDrawable(_context, drawableId);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP && (drawable instanceof VectorDrawable || drawable instanceof VectorDrawableCompat)) {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
drawable = (DrawableCompat.wrap(drawable)).mutate();
}
bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(),
drawable.getIntrinsicHeight(), Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
drawable.draw(canvas);
} else if (drawable instanceof BitmapDrawable) {
bitmap = ((BitmapDrawable) drawable).getBitmap();
}
return bitmap;
}
public ContextUtils tintMenuItems(Menu menu, boolean recurse, @ColorInt int iconColor) {
for (int i = 0; i < menu.size(); i++) {
MenuItem item = menu.getItem(i);
tintDrawable(item.getIcon(), iconColor);
if (item.hasSubMenu() && recurse) {
tintMenuItems(item.getSubMenu(), recurse, iconColor);
}
}
return this;
}
public Drawable tintDrawable(@DrawableRes int drawableRes, @ColorInt int color) {
return tintDrawable(_context.getResources().getDrawable(drawableRes), color);
}
public Drawable tintDrawable(@Nullable Drawable drawable, @ColorInt int color) {
if (drawable != null) {
drawable = DrawableCompat.wrap(drawable);
DrawableCompat.setTint(drawable.mutate(), color);
}
return drawable;
}
@SuppressLint("PrivateApi")
public ContextUtils setSubMenuIconsVisiblity(Menu menu, boolean visible) {
if (menu.getClass().getSimpleName().equals("MenuBuilder")) {
try {
Method m = menu.getClass().getDeclaredMethod("setOptionalIconsVisible", Boolean.TYPE);
m.setAccessible(true);
m.invoke(menu, visible);
} catch (Exception ignored) {
}
}
return this;
}
2017-05-29 19:05:37 +02:00
}