Mam WebView i chcę, aby strona ładowała się w WebView, w postępie w programie ActionBar. Aplikacja korzysta z biblioteki AppCompat Android, docelowa aplikacja i skompilowana wersja SDK to 21. Tylko WebView działa normalnie.ActionBar nie wyświetla paska postępu
Myślę, że problem w metodzie setSupportProgress(int progress)
.
Mój kod jest poniżej.
aktywny:
public class AuthActivity extends ActionBarActivity {
private boolean isConfirmationRequired = false;
private Utils utils = new Utils();
@SuppressLint("SetJavaScriptEnabled")
@Override
protected void onCreate(Bundle savedInstanceState) {
supportRequestWindowFeature(Window.FEATURE_PROGRESS);
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_auth);
final String authUrl = "some url";
final WebView authWebView = (WebView) findViewById(R.id.auth_web_view);
authWebView.getSettings().setJavaScriptEnabled(true);
authWebView.setWebChromeClient(new WebChromeClient() {
@Override
public void onProgressChanged(WebView view, int newProgress) {
setTitle(R.string.loading);
setSupportProgress(newProgress * 100);
if (newProgress == 100)
setTitle(R.string.sign_in);
}
});
authWebView.setWebViewClient(new WebViewClient() {
@Override
public void onPageStarted(WebView view, String url, Bitmap favicon) {
super.onPageStarted(view, url, favicon);
if (!url.equals(authUrl))
isConfirmationRequired = true;
}
@Override
public boolean shouldOverrideUrlLoading(WebView webView, String url) {
boolean hasUserBrokenAuth = url.equals("some url") ||
url.equals("some url");
boolean isUserAuthorized = url.startsWith("some url" +
"access_token=");
if (hasUserBrokenAuth) {
if (isConfirmationRequired)
utils.showConfirmDialog(AuthActivity.this);
else
finish();
} else {
utils.webViewLoadUrlIfInternetIsConnected(AuthActivity.this, authWebView, url);
if (isUserAuthorized)
saveAuthData(url);
}
return true;
}
});
utils.webViewLoadUrlIfInternetIsConnected(this, authWebView, authUrl);
}
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK) {
if (isConfirmationRequired) {
utils.showConfirmDialog(this);
}
}
return super.onKeyDown(keyCode, event);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
if (isConfirmationRequired) {
utils.showConfirmDialog(this);
return true;
} else {
return super.onOptionsItemSelected(item);
}
}
private void saveAuthData(String url) {
String accessToken = utils.extractPattern(url, "access_token=(.*?)&");
String userId = utils.extractPattern(url, "user_id=(\\d*)");
}
utils.webViewLoadUrlIfInternetIsConnected:
public void webViewLoadUrlIfInternetIsConnected(final Context context, final WebView webView,
final String url) {
if (isInternetConnected(context)) {
webView.loadUrl(url);
} else {
showSnackbarInternetDisconnected(context, new ActionClickListener() {
@Override
public void onActionClicked(Snackbar snackbar) {
snackbar.dismiss();
webViewLoadUrlIfInternetIsConnected(context, webView, url);
}
});
}
}
Świetne rozwiązanie, dzięki. Zamiast niestandardowego losowania dodałem style = "? Android: attr/android: progressBarStyleSmall" do układu ProgressBar. – Yar
Wiem, ale wyraźnie użyłem niestandardowego losowania, aby mieć ten sam na każdej wersji Androida. – David