-1

私のコードdialog2.setTitle("FeedBack");では白色で表示されています。タイトルの変更色を変更するにはどうすればよいですか? 私のレイアウトの背景は白なので見えません。ダイアログのタイトルの色を変更するにはどうすればよいですか?

public Dialog dialog2;
    ImageView b = (ImageView) findViewById(R.id.button1);

    b.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
    dialog2 = new Dialog(context);
    View vLoad = LayoutInflater.from(fifthscreen.this).inflate(R.layout.timer, null);

    dialog2.setContentView(vLoad);
     dialog2.setTitle("FeedBack");
     dialog2.setCancelable(false);
    dialog2.show();
    }
    });

   }


       ////////////timer.xml///////////


              <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:background="#ffffff"

 android:id="@+id/layouttimer">


      <TextView
    android:id="@+id/text"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:paddingLeft="5dp"
    android:paddingRight="5dp"
    android:textSize="15dp"
    android:textColor="#000000" ></TextView>




<Button
    android:id="@+id/FeedbackYummiSlice"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:text=" YumiiSlice" >

</Button>


<Button
    android:id="@+id/FeedbackThisdish"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:text="   Feedback This dish   " >
</Button>

<Button
    android:id="@+id/nothanks"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:text="          No,Thanks          " >

</Button>
</LinearLayout>
4

1 に答える 1