Skip to content

Instantly share code, notes, and snippets.

public class MyCustomView extends View {
/**
* Constructor intended for programmatic instantiation of view
*/
public MyCustomView(Context context) {
super(context);
initView();// onFinishInflate is not invoked
}
/**