Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I tried to display progress dialog and got it but now want to know how to set background color for Progress dialogue and have to set color for Progress Bar. Any help Appreciated My Code

public class MainActivity extends Activity {

ProgressDialog progress;
Button b;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    b=(Button)findViewById(R.id.button1);


    b.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub

            progress= new ProgressDialog(MainActivity.this);
            progress.setMessage("Loading...!");
            progress.show();

        }
    });

}}

XML code

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="164dp"
    android:text="Start"/>

share|improve this question
There are lot! What have you tried before? For sample, take a look at here – Praveen Feb 26 at 7:10
@Praveen i have create XML file in drawable and set background in XML layout . – Manoj Kumar Mar 27 at 12:41

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.