我的自定义对话框看起来不正确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显示我的对话框不正确?
答案 0 :(得分:2)
为按钮设置layout_height
:
<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
可能太大/太小,玩这些值直到它是正确的。