-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

0

该方法setCustomTitle(View customTitleView)允许您这样做。您需要创建一个布局以在其中设置,并在该布局中简单地将 TextView 设置为您想要的样式。

LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View customTitleView = inflater.inflate(R.layout.custom_title_view, null);

AlertDialog.Builder builder = new AlertDialog.Builder(context)
.setCustomTitle(customTitleView);

请参阅此答案以获取更多信息。

于 2013-10-23T07:25:14.813 回答