2

我需要使用以下布局自定义自定义对话框的标题区域:

对话框标题.xml

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
    android:id="@+id/text" 
    android:text="@string/tell_a_friend"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="8dip"
    android:paddingTop="12dip"
    android:paddingBottom="12dip"
    style="@style/bigTextWhite" />

</LinearLayout>

我正在使用扩展 Dialog 的 CustomDialog 类创建我的对话框。

CustomDialog dialogTellAFriend = new CustomDialog(this, Constants.TELL_A_FRIEND_DIALOG);    
dialogTellAFriend.show();

我该如何做到这一点?

4

1 回答 1

3

您必须隐藏您的对话框标题并通过您的 xml 扩展整个对话框。我认为这个想法最适合你。

隐藏对话框标题

dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);

加载对话框的布局是

dialog.setContentView(R.layout.logindialog);
于 2012-08-23T09:55:09.233 回答