Back to project page AlertDialogPro.
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.
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); } }