Android Open Source - AlertDialogPro No Tint Checked Text View






From Project

Back to project page AlertDialogPro.

License

The source code is released under:

Apache License

If you think the Android project AlertDialogPro listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.alertdialogpro.holo.internal;
/*www .  ja v a 2 s .  co  m*/
import android.content.Context;
import android.util.AttributeSet;
import android.widget.CheckedTextView;

/**
 * This class is used to avoid the appcompat-v7:r21 to replace CheckedTextView with TintCheckedTextView.
 */
public class NoTintCheckedTextView extends CheckedTextView {
    public NoTintCheckedTextView(Context context) {
        super(context);
    }

    public NoTintCheckedTextView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    public NoTintCheckedTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }
}




Java Source Code List

com.alertdialogpro.AlertDialogPro.java
com.alertdialogpro.ProgressDialogPro.java
com.alertdialogpro.demo.MainActivity.java
com.alertdialogpro.holo.internal.NoTintCheckedTextView.java
com.alertdialogpro.internal.AlertController.java
com.alertdialogpro.internal.DialogTitle.java
com.alertdialogpro.material.ButtonCompat.java
com.alertdialogpro.material.CheckedTextViewCompat.java
com.alertdialogpro.material.ProgressBarCompat.java
com.alertdialogpro.material.drawable.CircularAnimatedDrawable.java