Skip to content

Instantly share code, notes, and snippets.

View vsvankhede's full-sized avatar
🎯

Vijay Vankhede vsvankhede

🎯
View GitHub Profile
@up1
up1 / LoadingView.java
Last active February 12, 2021 17:13
Android Testing :: Custom View with Robolectric
public class LoadingView extends RelativeLayout {
public LoadingView(Context context) {
super(context);
}
public LoadingView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public LoadingView(Context context, AttributeSet attrs, int defStyle) {