Package com.bambuser.broadcaster
Interface Broadcaster.PictureObserver
- Enclosing class:
- Broadcaster
public static interface Broadcaster.PictureObserver
A callback interface that can be passed to
takePicture(file, resolution, observer)
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onPictureStored
(boolean success) Called if a call to takePicture finished.
-
Method Details
-
onPictureStored
void onPictureStored(boolean success) Called if a call to takePicture finished. The callback is always done on the main thread.- Parameters:
success
- True if the picture was successfully stored. False if the call explicitly failed and the app might want to clean up any placeholder inserted into MediaStore.
-