Back to project page android-data-persistence.
The source code is released under:
MIT License
If you think the Android project android-data-persistence listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.teamtreehouse.mememaker.ui.views; // w ww .j a va2s .com import android.content.Context; import android.util.AttributeSet; import android.widget.ImageView; /** * Created by Evan Anger on 8/17/14. */ public class MemeImageView extends ImageView { public MemeImageView(Context context, AttributeSet attributeSet) { super(context, attributeSet); } private void addEditToImage(int x, int y) { } }