Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to know where I can find the original XML used for the progressDialog because I want exactly the same design except change color of the background, border,text color and center also the rotating image.

I tried to use my own XML layout, but I didn't succeed in reproducing the same design as the original one (the small arrow, the line between the title etc....)

http://thedevelopersinfo.files.wordpress.com/2009/10/with_title2.jpg

Big thanks !

share|improve this question
It's work....but maybe not in your country ! it's just the default progressDialog – Dahevos Jun 28 '12 at 8:08
On my browser if i remove ?type=w3 the image is very small. Here is the same one : thedevelopersinfo.files.wordpress.com/2009/10/with_title2.jpg – Dahevos Jun 28 '12 at 8:13
Ya. It's working. – Bala Jun 28 '12 at 8:14

1 Answer

up vote 0 down vote accepted

You can find it in your android sdk directory.

\android-sdk\platforms\android-XX\data\res\layout\progress_dialog.xml

share|improve this answer
Thanks. I try to use it directly by dialog.setContentView(R.layout.custom_progress_dialog); where R.layout.custom_progress_dialog is the exact content of the progress_dialog.xml. But an error appear and i have a force close.... I try to use with "Dialog" and not ProgressDialog, but with that i don't have the small arrow and the separator. How to do it ? – Dahevos Jun 28 '12 at 8:09
Please post your code and error log. – Benito Jun 28 '12 at 8:14
06-28 08:19:15.165: E/AndroidRuntime(820): FATAL EXCEPTION: main 06-28 08:19:15.165: E/AndroidRuntime(820): android.util.AndroidRuntimeException: requestFeature() must be called before adding content – Dahevos Jun 28 '12 at 8:20
ProgressDialog dialog = new ProgressDialog(this); dialog.setContentView(R.layout.custom_progress_dialog); (the xml is the same as \android-sdk\platforms\android-XX\data\res\layout\progress_dialog.xml) – Dahevos Jun 28 '12 at 8:21
Don't use ProgressDialog. Use AlertDialog and AlertDialog.Builder instead and inflate the layout you're using. – Benito Jun 28 '12 at 8:52
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.