Skip to content

Instantly share code, notes, and snippets.

View Pratikraj001's full-sized avatar
🏠
Working from home

Pratik Raj Pratikraj001

🏠
Working from home
View GitHub Profile
@udacityandroid
udacityandroid / ImageView.java
Created June 15, 2015 18:24
Android for Beginners : Simplified ImageView class
/**
* Displays an image, such as an icon.
*/
public class ImageView extends View {
// Resource ID for the source image that should be displayed in the ImageView.
private int mImageId;
// Context of the app
private Context mContext;