fix articlefragment progressbar
This commit is contained in:
parent
675749a608
commit
d733127fa1
@ -132,7 +132,7 @@ public class ArticleFragment extends Fragment {
|
||||
web.setWebChromeClient(new WebChromeClient() {
|
||||
@Override
|
||||
public void onProgressChanged(WebView view, int progress) {
|
||||
m_activity.setProgress(progress * 10000);
|
||||
m_activity.setProgress(Math.round(((float)progress / 100f) * 10000));
|
||||
if (progress == 100) {
|
||||
m_activity.setProgressBarVisibility(false);
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ import android.view.Menu;
|
||||
import android.view.MenuInflater;
|
||||
import android.view.MenuItem;
|
||||
import android.view.View;
|
||||
import android.view.Window;
|
||||
import android.widget.EditText;
|
||||
import android.widget.SearchView;
|
||||
import android.widget.ShareActionProvider;
|
||||
@ -80,6 +81,10 @@ public class OfflineActivity extends CommonActivity {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
|
||||
requestWindowFeature(Window.FEATURE_PROGRESS);
|
||||
|
||||
setProgressBarVisibility(false);
|
||||
|
||||
setContentView(R.layout.login);
|
||||
|
||||
setLoadingStatus(R.string.blank, false);
|
||||
|
@ -28,6 +28,7 @@ import android.view.LayoutInflater;
|
||||
import android.view.MenuItem;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.webkit.WebChromeClient;
|
||||
import android.webkit.WebSettings;
|
||||
import android.webkit.WebSettings.LayoutAlgorithm;
|
||||
import android.webkit.WebView;
|
||||
@ -126,6 +127,16 @@ public class OfflineArticleFragment extends Fragment {
|
||||
|
||||
if (web != null) {
|
||||
|
||||
web.setWebChromeClient(new WebChromeClient() {
|
||||
@Override
|
||||
public void onProgressChanged(WebView view, int progress) {
|
||||
m_activity.setProgress(Math.round(((float)progress / 100f) * 10000));
|
||||
if (progress == 100) {
|
||||
m_activity.setProgressBarVisibility(false);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
String content;
|
||||
String cssOverride = "";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user