mmlooloo
mmlooloo

Reputation: 18977

ProgressDialogs and material design spec

From this comment:

ProgressDialogs are a bad pattern, and are not even mentioned in the material design spec, which is why I haven't backported them.

Can anybody tell how to show my app is doing network transaction with material design spec ?

Upvotes: 3

Views: 143

Answers (1)

Tim Kranen
Tim Kranen

Reputation: 4222

I think an Activity Indicator would be most appropriate here, unless you implement your own design.

Activity indicators are for operations of an indeterminate length. They ask users to wait a moment while something finishes up, without getting into specifics about what's happening behind the scenes.

This comes straight from the Material design spec, the Gmail application uses the Activity circle while loading it's data.

Source: https://developer.android.com/design/building-blocks/progress.html

Upvotes: 1

Related Questions