Sudipta Som
Sudipta Som

Reputation: 6567

Progress Dialog in Android

is it possible to add any layout in progress dialog box in android??

Upvotes: 2

Views: 985

Answers (1)

methodin
methodin

Reputation: 6712

The progress dialog currently implemented does not allow for custom content. Your best bet is to use the standard Dialog class and add in the progress bar and whatever else you need into a layout file and inflate it.

See Dialogs in Android

Upvotes: 3

Related Questions