We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
could you add a getter for
private boolean started;
so the when I call
@OverRide public void onPause() { super.onPause(); fotoapparat.stop(); .... }
I can do
@OverRide public void onPause() { super.onPause(); if(fotoappart.isStarted()) fotoapparat.stop(); }
The text was updated successfully, but these errors were encountered:
Hey. Why don't you add the private boolean started; in the class where you are calling FA's start/stop and set it true after you start FA?
true
We think this method is not needed for everyone to be part of the library, so we would prefer to not expand the API if it can be avoided.
Sorry, something went wrong.
No branches or pull requests
could you add a getter for
private boolean started;
so the when I call
@OverRide
public void onPause() {
super.onPause();
fotoapparat.stop();
....
}
I can do
@OverRide
public void onPause() {
super.onPause();
if(fotoappart.isStarted()) fotoapparat.stop();
}
The text was updated successfully, but these errors were encountered: