Back to project page vlcamera.
The source code is released under:
Apache License
If you think the Android project vlcamera 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.ktmt.vlcamera.custom; /* w w w. ja v a 2s . c o m*/ import android.content.Context; import android.util.AttributeSet; import android.widget.ImageView; public class ImageViewNameMap extends ImageView { private String name; public ImageViewNameMap(Context context) { super(context); } public ImageViewNameMap(Context context, AttributeSet attrs) { super(context, attrs); } public ImageViewNameMap(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } public String getName() { return name; } public void setName(String name) { this.name = name; } }