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.
/* author:huydx/*from w w w .j a v a2 s .c o m*/ github:https://github.com/huydx */ package com.ktmt.vlcamera.custom; import android.app.Activity; import android.app.Application; import android.graphics.Bitmap; public class BaseApplication extends Application { private Activity mCurrentActivity = null; private Bitmap mRawBitmap = null; public Bitmap getRawBitmap() { return mRawBitmap; } public void setRawBitmap(Bitmap mRawBitmap) { this.mRawBitmap = mRawBitmap; } public void onCreate() { super.onCreate(); } public Activity getCurrentActivity(){ return mCurrentActivity; } public void setCurrentActivity(Activity mCurrentActivity){ this.mCurrentActivity = mCurrentActivity; } }