Skip to content

Instantly share code, notes, and snippets.

View nathansdev's full-sized avatar
🎯
Focusing

Sabarinathan nathansdev

🎯
Focusing
View GitHub Profile
@nathansdev
nathansdev / CustomView
Created June 13, 2018 10:14
CustomView For drawing text over images
@SuppressLint("AppCompatCustomView")
public class CustomView extends ImageView {
public CustomView(Context context) {
super(context);
}
public CustomView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
}