0

在此处输入图像描述

我的自定义对话框看起来不正确。Android 削减了我的按钮。

我使用下一个布局来显示此对话框:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minWidth="280dp"
android:orientation="vertical"
android:padding="10dp">

<FrameLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/dialog_top"
    android:padding="0dp" >

    <TextView
        android:id="@+id/title"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_margin="5dp"
        android:ellipsize="end"
        android:gravity="center"
        android:maxLines="1"
        android:text="Title"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textColor="@android:color/white" />

</FrameLayout>

<FrameLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_marginTop="-2dp"
    android:background="@drawable/dialog_bottom"
    android:padding="0dp" >

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

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:layout_marginBottom="10dp"
            android:text="Do you really want to close program?" />

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >

            <Button
                android:id="@+id/yes"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="10dp"
                android:background="@drawable/btn_orange_normal"
                android:minWidth="100dp"
                android:text="@string/yes" />

            <Button
                android:id="@+id/no"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:background="@drawable/btn_lightgray_normal"
                android:minWidth="100dp"
                android:text="@string/no" />

        </LinearLayout>

    </LinearLayout>

</FrameLayout>

要显示我的自定义对话框,我使用下一个代码:

   public CustomxDialog(Context context)
{
    super(context, R.style.My_Dialog);

    root = (LinearLayout) LayoutInflater.from(context).inflate(R.layout.dialog, null);
    title = (TextView) root.findViewById(R.id.title);
    super.setContentView(root);
}

而 R.style.My_Dialog 是

 <style name="My.Dialog" parent="android:style/Theme.Dialog">
    <item name="android:textColor">@color/text_default</item>
    <item name="android:windowBackground">@android:color/transparent</item>
    <item name="android:windowNoTitle">true</item>
</style>

在布局编辑器中,一切看起来都很正常。为什么 Android 显示不正确的我的对话框?

4

1 回答 1

2

layout_height为按钮设置 a :

<Button
            android:id="@+id/yes"
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            android:layout_marginRight="10dp"
            android:background="@drawable/btn_orange_normal"
            android:minWidth="100dp"
            android:text="@string/yes" />

        <Button
            android:id="@+id/no"
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            android:layout_marginLeft="10dp"
            android:background="@drawable/btn_lightgray_normal"
            android:minWidth="100dp"
            android:text="@string/no" />

50dp可能太大/太小,使用这些值直到它是正确的。

于 2012-08-01T14:33:38.313 回答