2

進行状況ダイアログを表示しようとしましたが、進行状況ダイアログの背景色を設定する方法を知りたいので、進行状況バーの色を設定する必要があります。どんな助けでも私のコードを高く評価しました

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 コード

<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"/>

4

0 に答える 0