123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- package com.afollestad.materialdialogs.util;
- import android.content.Context;
- import android.content.DialogInterface;
- import android.content.res.ColorStateList;
- import android.content.res.TypedArray;
- import android.graphics.Color;
- import android.graphics.drawable.Drawable;
- import android.os.Build;
- import android.support.annotation.AttrRes;
- import android.support.annotation.ColorRes;
- import android.util.TypedValue;
- import android.view.View;
- import android.view.inputmethod.InputMethodManager;
- import com.afollestad.materialdialogs.GravityEnum;
- import com.afollestad.materialdialogs.MaterialDialog;
- /**
- * @author Aidan Follestad (afollestad)
- */
- public class DialogUtils {
- public static int adjustAlpha(int color, @SuppressWarnings("SameParameterValue") float factor) {
- int alpha = Math.round(Color.alpha(color) * factor);
- int red = Color.red(color);
- int green = Color.green(color);
- int blue = Color.blue(color);
- return Color.argb(alpha, red, green, blue);
- }
- public static int resolveColor(Context context, @AttrRes int attr) {
- return resolveColor(context, attr, 0);
- }
- public static int resolveColor(Context context, @AttrRes int attr, int fallback) {
- TypedArray a = context.getTheme().obtainStyledAttributes(new int[]{attr});
- try {
- return a.getColor(0, fallback);
- } finally {
- a.recycle();
- }
- }
- // Try to resolve the colorAttr attribute.
- public static ColorStateList resolveActionTextColorStateList(Context context, @AttrRes int colorAttr, ColorStateList fallback) {
- TypedArray a = context.getTheme().obtainStyledAttributes(new int[]{colorAttr});
- try {
- final TypedValue value = a.peekValue(0);
- if (value == null) {
- return fallback;
- }
- if (value.type >= TypedValue.TYPE_FIRST_COLOR_INT && value.type <= TypedValue.TYPE_LAST_COLOR_INT) {
- return getActionTextStateList(context, value.data);
- } else {
- final ColorStateList stateList = a.getColorStateList(0);
- if (stateList != null) {
- return stateList;
- } else {
- return fallback;
- }
- }
- } finally {
- a.recycle();
- }
- }
- // Get the specified color resource, creating a ColorStateList if the resource
- // points to a color value.
- public static ColorStateList getActionTextColorStateList(Context context, @ColorRes int colorId) {
- final TypedValue value = new TypedValue();
- context.getResources().getValue(colorId, value, true);
- if (value.type >= TypedValue.TYPE_FIRST_COLOR_INT && value.type <= TypedValue.TYPE_LAST_COLOR_INT) {
- return getActionTextStateList(context, value.data);
- } else {
- return context.getResources().getColorStateList(colorId);
- }
- }
- public static String resolveString(Context context, @AttrRes int attr) {
- TypedValue v = new TypedValue();
- context.getTheme().resolveAttribute(attr, v, true);
- return (String) v.string;
- }
- private static int gravityEnumToAttrInt(GravityEnum value) {
- switch (value) {
- case CENTER:
- return 1;
- case END:
- return 2;
- default:
- return 0;
- }
- }
- public static GravityEnum resolveGravityEnum(Context context, @AttrRes int attr, GravityEnum defaultGravity) {
- TypedArray a = context.getTheme().obtainStyledAttributes(new int[]{attr});
- try {
- switch (a.getInt(0, gravityEnumToAttrInt(defaultGravity))) {
- case 1:
- return GravityEnum.CENTER;
- case 2:
- return GravityEnum.END;
- default:
- return GravityEnum.START;
- }
- } finally {
- a.recycle();
- }
- }
- public static Drawable resolveDrawable(Context context, @AttrRes int attr) {
- return resolveDrawable(context, attr, null);
- }
- private static Drawable resolveDrawable(Context context, @AttrRes int attr, @SuppressWarnings("SameParameterValue") Drawable fallback) {
- TypedArray a = context.getTheme().obtainStyledAttributes(new int[]{attr});
- try {
- Drawable d = a.getDrawable(0);
- if (d == null && fallback != null)
- d = fallback;
- return d;
- } finally {
- a.recycle();
- }
- }
- public static int resolveDimension(Context context, @AttrRes int attr) {
- return resolveDimension(context, attr, -1);
- }
- private static int resolveDimension(Context context, @AttrRes int attr, int fallback) {
- TypedArray a = context.getTheme().obtainStyledAttributes(new int[]{attr});
- try {
- return a.getDimensionPixelSize(0, fallback);
- } finally {
- a.recycle();
- }
- }
- public static boolean resolveBoolean(Context context, @AttrRes int attr, boolean fallback) {
- TypedArray a = context.getTheme().obtainStyledAttributes(new int[]{attr});
- try {
- return a.getBoolean(0, fallback);
- } finally {
- a.recycle();
- }
- }
- public static boolean resolveBoolean(Context context, @AttrRes int attr) {
- return resolveBoolean(context, attr, false);
- }
- public static boolean isColorDark(int color) {
- double darkness = 1 - (0.299 * Color.red(color) + 0.587 * Color.green(color) + 0.114 * Color.blue(color)) / 255;
- return darkness >= 0.5;
- }
- public static void setBackgroundCompat(View view, Drawable d) {
- if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) {
- //noinspection deprecation
- view.setBackgroundDrawable(d);
- } else {
- view.setBackground(d);
- }
- }
- public static void showKeyboard(DialogInterface di, final MaterialDialog.Builder builder) {
- final MaterialDialog dialog = (MaterialDialog) di;
- if (dialog.getInputEditText() == null) return;
- dialog.getInputEditText().post(new Runnable() {
- @Override
- public void run() {
- dialog.getInputEditText().requestFocus();
- InputMethodManager imm = (InputMethodManager) builder.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
- if (imm != null)
- imm.showSoftInput(dialog.getInputEditText(), InputMethodManager.SHOW_IMPLICIT);
- }
- });
- }
- public static void hideKeyboard(DialogInterface di, final MaterialDialog.Builder builder) {
- final MaterialDialog dialog = (MaterialDialog) di;
- if (dialog.getInputEditText() == null) return;
- dialog.getInputEditText().post(new Runnable() {
- @Override
- public void run() {
- dialog.getInputEditText().requestFocus();
- InputMethodManager imm = (InputMethodManager) builder.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
- if (imm != null)
- imm.hideSoftInputFromWindow(dialog.getInputEditText().getWindowToken(), 0);
- }
- });
- }
- public static ColorStateList getActionTextStateList(Context context, int newPrimaryColor) {
- final int fallBackButtonColor = DialogUtils.resolveColor(context, android.R.attr.textColorPrimary);
- if (newPrimaryColor == 0) newPrimaryColor = fallBackButtonColor;
- int[][] states = new int[][]{
- new int[]{-android.R.attr.state_enabled}, // disabled
- new int[]{} // enabled
- };
- int[] colors = new int[]{
- DialogUtils.adjustAlpha(newPrimaryColor, 0.4f),
- newPrimaryColor
- };
- return new ColorStateList(states, colors);
- }
- }
|