Skip to content

Instantly share code, notes, and snippets.

@Skamp
Skamp / Android: TextView set Alpha
Created November 1, 2011 08:45
Android: TextView set Alpha
import android.content.Context;
import android.util.AttributeSet;
import android.widget.TextView;
public class AlphaTextView extends TextView {
public AlphaTextView(Context context) {
super(context);
}