回答編集履歴
1
単語の修正
answer
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
> This class was deprecated in API level 26.
|
|
3
3
|
ProgressDialog is a modal dialog, which prevents the user from interacting with the app. Instead of using this class, you should use a progress indicator like ProgressBar, which can be embedded in your app's UI. Alternatively, you can use a notification to inform the user of the task's progress.
|
|
4
4
|
|
|
5
|
-
つまり、ユーザーがアプリの操作をすることを妨げるものですので、
|
|
5
|
+
つまり、ユーザーがアプリの操作をすることを妨げるものですので、非推奨になっていますね。
|
|
6
6
|
代わりに、プログレスバーを使うもしくは通知を使ってユーザーの行ったタスクの進行度を示してあげてください。と書いてあります。
|
|
7
7
|
あくまで個人的な実感ですが、ファイルのダウンロード系ですと通知で進行度を表すものが多くて、インターネット接続などを介してデータを読み込むときはプログレスバーが用いられる時が多いと感じます。
|
|
8
8
|
|