Back to project page SqrShare.
The source code is released under:
<a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc/4.0/88x31.png" /></a><br />...
If you think the Android project SqrShare 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.frankegan.sqrshare; //from w ww . j av a 2 s. c o m import android.graphics.Bitmap; import android.net.Uri; /** * @author frankegan on 12/28/14. */ public interface PictureHolder { public void setPicture(Uri uri); public void setPicture(Bitmap bm); public Uri getPictureUri(); public Bitmap getPictureBitmap(); public void setFragmentData(Bitmap bm); public Bitmap getFragmentData(); public void setFabColor(Integer clr); public void rotatePicture(); }