com.afollestad.materialdialogs.base.DialogBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-rteditor-materialdialog Show documentation
Show all versions of android-rteditor-materialdialog Show documentation
Android RTEditor is a rich text editor component used as drop-in for EditText
package com.afollestad.materialdialogs.base;
import android.annotation.SuppressLint;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.graphics.Paint;
import android.graphics.Typeface;
import android.graphics.drawable.Drawable;
import android.os.Build;
import android.os.Message;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
/**
* @author Aidan Follestad (afollestad)
*/
public class DialogBase extends AlertDialog implements DialogInterface.OnShowListener {
protected final static String POSITIVE = "POSITIVE";
protected final static String NEGATIVE = "NEGATIVE";
protected final static String NEUTRAL = "NEUTRAL";
private OnShowListener mShowListener;
protected DialogBase(Context context) {
super(context);
}
public static void setMargin(View view, int top, int bottom, int left, int right) {
setMargin(view, top, bottom, left, right, -1);
}
public static void setMargin(View view, int top, int bottom, int left, int right, int height) {
ViewGroup.MarginLayoutParams params = (ViewGroup.MarginLayoutParams) view.getLayoutParams();
if (top > -1) params.topMargin = top;
if (bottom > -1) params.bottomMargin = bottom;
if (left > -1) params.leftMargin = left;
if (right > -1) params.rightMargin = right;
if (height > -1) params.height = height;
view.setLayoutParams(params);
}
/**
* @deprecated Not supported by the Material dialog.
*/
@Override
public void setView(View view) {
throw new RuntimeException("This method is not supported by the MaterialDialog.");
}
protected void setViewInternal(View view) {
super.setView(view);
}
/**
* @deprecated Not supported by the Material dialog.
*/
@Override
public void setView(View view, int viewSpacingLeft, int viewSpacingTop, int viewSpacingRight, int viewSpacingBottom) {
throw new RuntimeException("This method is not supported by the MaterialDialog.");
}
/**
* @deprecated Use setContent() instead.
*/
@Override
public void setMessage(CharSequence message) {
throw new RuntimeException("This method is not supported by the MaterialDialog, use setContent() instead.");
}
/**
* @deprecated Not supported by the Material dialog.
*/
@Override
public void setCustomTitle(View customTitleView) {
throw new RuntimeException("This method is not supported by the MaterialDialog.");
}
/**
* @deprecated Not supported by the Material dialog.
*/
@Override
public void setButton(int whichButton, CharSequence text, Message msg) {
throw new RuntimeException("Use setActionButton(MaterialDialog.Button, CharSequence) instead.");
}
/**
* @deprecated Not supported by the Material dialog.
*/
@Override
public void setButton(int whichButton, CharSequence text, OnClickListener listener) {
throw new RuntimeException("Use setActionButton(MaterialDialog.Button, CharSequence) instead.");
}
@Override
public final void setOnShowListener(OnShowListener listener) {
mShowListener = listener;
}
protected final void setOnShowListenerInternal() {
super.setOnShowListener(this);
}
@Override
public void onShow(DialogInterface dialog) {
if (mShowListener != null)
mShowListener.onShow(dialog);
}
@SuppressLint("NewApi")
@SuppressWarnings("deprecation")
protected void setBackgroundCompat(View view, Drawable d) {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) {
view.setBackgroundDrawable(d);
} else {
view.setBackground(d);
}
}
protected void setTypeface(TextView text, Typeface t) {
int flags = text.getPaintFlags() | Paint.SUBPIXEL_TEXT_FLAG;
text.setPaintFlags(flags);
text.setTypeface(t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy