進行状況ダイアログを表示するために、次のコードがあります。
@Override
public void onPreExecute() {
if(progress == null)
progress = ProgressDialog.show(MainActivity2.this, null , null);
progress.setContentView(R.layout.progressbar_activity);
}
これは私のprogressDialogレイアウトです。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@android:style/Widget.ProgressBar.Small.Inverse"
android:layout_marginRight="5dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/loading" />
</LinearLayout>
これが私のメインのアクティビティ レイアウトです。
<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"
android:background="@android:color/white"
android:orientation="vertical"
tools:context=".MainActivity" >
<LinearLayout
android:id="@+id/tittle_bar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:color/black"
android:gravity="center"
android:orientation="vertical"
android:paddingTop="6dip" >
<Button
android:id="@+id/start_progress"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="@string/hello_world" />
</LinearLayout>
</RelativeLayout>
ご覧のとおり、背景色は白です。
mainActivity のボタンをクリックすると、進行状況ダイアログが表示されますが、ページの背景色が灰色になります。
-------->
デフォルトでは白、進行状況ダイアログのテキストは黒にしたい。私は何が欠けていますか?