Commit 1e8dadec authored by fallenstardust's avatar fallenstardust

remove Progressbar2

parent a24ecf12
......@@ -40,7 +40,6 @@ public class DialogPlus extends Dialog {
private String mUrl, mHtml;
private View mCancelLayout, mButtonLayout, mTitleLayout;
private View mProgressBar;
public ProgressBar mProgressBar2;
private WebViewPlus mWebView;
private final GestureDetector mGestureDetector;
private GestureDetector.OnGestureListener mOnGestureListener;
......@@ -166,7 +165,6 @@ public class DialogPlus extends Dialog {
dialog.setOnCancelListener(cancelListener);
dialog.hideButton();
dialog.showProgressBar();
dialog.showProgressBar2();
// dialog.getWindow().setType(TYPE_KEYGUARD);
dialog.show();
return dialog;
......@@ -199,17 +197,6 @@ public class DialogPlus extends Dialog {
return this;
}
public DialogPlus showProgressBar2() {
if (mProgressBar2 != null) {
mProgressBar2.setVisibility(View.VISIBLE);
}
return this;
}
public ProgressBar getProgressBar2() {
return mProgressBar2;
}
@Override
public void setTitle(@Nullable CharSequence title) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment