Guest Mode Mistakenly activated
- By davolu2002
- Smartphones
- 3 Replies
I mistakenly clicked OK on guest mode. I don't Have the password and the secret answer. Please i need help without wiping out my data. Thank you.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
private class DownloadTask extends AsyncTask<String, Integer, DownloadTask.Result> {
...
/**
* Wrapper class that serves as a union of a result value and an exception. When the download
* task has completed, either the result value or exception can be a non-null value.
* This allows you to pass exceptions to the UI thread that were thrown during doInBackground().
*/
static class Result {
public String mResultValue;
public Exception mException;
public Result(String resultValue) {
mResultValue = resultValue;
}
public Result(Exception exception) {
mException = exception;
}
}
dependencies {
...
compile 'com.android.volley:volley:1.1.1'
}