-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMaterialProgressDialog.java
More file actions
117 lines (92 loc) · 3.75 KB
/
Copy pathMaterialProgressDialog.java
File metadata and controls
117 lines (92 loc) · 3.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package com.app.yourrestaurantapp.utilities;
import android.content.Context;
import android.view.Gravity;
import android.view.ViewGroup;
import android.view.Window;
import android.view.WindowManager;
import android.widget.LinearLayout;
import android.widget.ProgressBar;
import android.widget.TextView;
import androidx.appcompat.app.AlertDialog;
import com.google.android.material.dialog.MaterialAlertDialogBuilder;
public class MaterialProgressDialog {
public static class Builder {
public Context context;
public AlertDialog dialog;
public String message = "";
public boolean cancelable;
public int textSize = 16;
public TextView textView;
public Builder(Context context) {
this.context = context;
this.textView = new TextView(context);
}
public Builder build() {
loadProgressDialog();
return this;
}
public Builder show() {
showProgressDialog();
return this;
}
public Builder dismiss() {
dismissProgressDialog();
return this;
}
public Builder setMessage(String message) {
this.message = message;
return this;
}
public Builder setCancelable(boolean cancelable) {
this.cancelable = cancelable;
return this;
}
public Builder setTextSize(int textSize) {
this.textSize = textSize;
return this;
}
public void loadProgressDialog() {
int llPadding = 80;
LinearLayout linearLayout = new LinearLayout(context);
linearLayout.setOrientation(LinearLayout.HORIZONTAL);
linearLayout.setPadding(llPadding, llPadding, llPadding, llPadding);
linearLayout.setGravity(Gravity.START);
LinearLayout.LayoutParams llParam = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
llParam.gravity = Gravity.CENTER;
linearLayout.setLayoutParams(llParam);
ProgressBar progressBar = new ProgressBar(context);
progressBar.setIndeterminate(true);
progressBar.setPadding(0, 0, llPadding, 0);
progressBar.setLayoutParams(llParam);
llParam = new LinearLayout.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT);
llParam.gravity = Gravity.CENTER;
textView.setTextSize(textSize);
textView.setLayoutParams(llParam);
linearLayout.addView(progressBar);
linearLayout.addView(textView);
MaterialAlertDialogBuilder builder = new MaterialAlertDialogBuilder(context);
builder.setCancelable(cancelable);
builder.setView(linearLayout);
dialog = builder.create();
Window window = dialog.getWindow();
if (window != null) {
WindowManager.LayoutParams layoutParams = new WindowManager.LayoutParams();
layoutParams.copyFrom(dialog.getWindow().getAttributes());
layoutParams.width = LinearLayout.LayoutParams.WRAP_CONTENT;
layoutParams.height = LinearLayout.LayoutParams.WRAP_CONTENT;
dialog.getWindow().setAttributes(layoutParams);
}
}
public void showProgressDialog() {
textView.setText(message);
dialog.show();
}
public void dismissProgressDialog() {
dialog.dismiss();
}
}
}