質問編集履歴
1
プログレス表示クラスを追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -30,6 +30,20 @@
|
|
30
30
|
}
|
31
31
|
}
|
32
32
|
|
33
|
+
public class CustomProgressDialog extends Dialog {
|
34
|
+
/**
|
35
|
+
* コンストラクタ
|
36
|
+
*
|
37
|
+
* @param context コンテキスト
|
38
|
+
*/
|
39
|
+
public CustomProgressDialog(Context context) {
|
40
|
+
super(context, R.style.Theme_CustomProgressDialog);
|
41
|
+
|
42
|
+
// レイアウトを決定
|
43
|
+
setContentView(R.layout.progress_activity);
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
33
47
|
```
|
34
48
|
|
35
49
|
### 試したこと・調べたこと
|