Skip to content

Instantly share code, notes, and snippets.

@evandroferreiras
Created December 5, 2018 09:34
Show Gist options
  • Save evandroferreiras/5ce1bc348a4b7f778fa41713d90b13ca to your computer and use it in GitHub Desktop.
Save evandroferreiras/5ce1bc348a4b7f778fa41713d90b13ca to your computer and use it in GitHub Desktop.
package com.example.pkg.myimageviewlibrary;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.RelativeLayout;
public class MyImageViewBasic extends RelativeLayout {
public MyImageViewBasic(Context context) {
super(context);
}
public MyImageViewBasic(Context context, AttributeSet attrs) {
super(context, attrs);
}
public MyImageViewBasic(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment