我正在使用Customized Dialog。 自定义对话框的布局如下
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<EditText
android:id="@+id/editTextMainBalance"
android:hint="Balance Dial Number"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<requestFocus />
</EditText>
<Button
android:id="@+id/buttonMainBalance"
android:layout_weight="1.5"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text=" DIAL " />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<EditText
android:id="@+id/editTextOtherBalance"
android:hint="Balance Dial Number"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Button
android:id="@+id/buttonOtherBalance"
android:layout_weight="1.5"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text=" DIAL " />
我在“我的代码”中夸大此布局
final Dialog dialog = new Dialog(this);
dialog.setContentView(R.layout.balance);
dialog.setTitle("Balance");
dialog.show();
但它没有正确显示,它很小(见图片)和不完整。