Android没有足够大的自定义对话框大小

时间:2010-09-27 03:33:42

标签: android dialog

我正在使用包含文本字段,图像和按钮的自定义对话框。文本可以包含HTML。有时,当文本足够长时,对话框的底部会从底部被切掉。我怎么能阻止这个?我希望Android确定对话框的大小,但它似乎没有这样做。在这种情况下,我是否需要自己调整Dialog的大小?

这是布局......

<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/alert_root_incorrect"
  style="@style/AlertDialogTheme"
  android:background="@drawable/rounded_alert"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:padding="10dp"
>
  <LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/rounded_alert"
  >

    <TableLayout
      android:stretchColumns="0"
      android:orientation="horizontal"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
    >

      <TableRow>
        <TextView
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:gravity="left"
          android:textStyle="bold"
          android:text="Sorry, that's wrong!"
          android:textColor="@color/gray_dark" />

        <ImageView
          android:id="@+id/check"
          android:background="@drawable/xmark"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="right"
          android:layout_marginRight="10dp" />

      </TableRow>
    </TableLayout>

    <TextView
      android:id="@+id/alert_text"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:ellipsize="none"
      android:text="In fact, this is where the explanation will go. Something about how this passage related to the topic"
      android:textColor="#000000" />

    <Button
      android:id="@+id/okay_button"
      android:layout_width="100dp"
      android:layout_height="wrap_content"
      android:gravity="center"
      android:layout_gravity="center_horizontal"
      android:background="@drawable/rounded_alert_button"
      android:text="Okay"
      android:textColor="@color/white"
      android:textSize="20sp" />
  </LinearLayout>
</LinearLayout>

以下是我用来加载它的代码......

if ( null == layout ) {
   this.layout = inflater.inflate(R.layout.alert_incorrect, (ViewGroup) findViewById(R.id.alert_root_incorrect));
}

TextView message = (TextView) layout.findViewById(R.id.alert_text);
message.setText(Html.fromHtml(card.getConclusion()));
((Button) layout.findViewById(R.id.okay_button)).setOnClickListener(new View.OnClickListener() {
   public void onClick(View v) {
      dismissDialog(INCORRECT_DIALOG);
      nextQuestion();
   }
});

layout.requestLayout();

dialog = new Dialog(this, R.style.AlertDialogTheme);
dialog.setContentView(layout);
dialog.setCancelable(false);

return dialog;

这就是我的意思。

alt text

谢谢,

约翰

2 个答案:

答案 0 :(得分:1)

这不完美,但我已经通过设置相对于默认显示的对话框布局来纠正它。

dialog = new Dialog(this, R.style.AlertDialogTheme);
dialog.setContentView(layout);
Window window = dialog.getWindow();
window.setLayout(
    (int)(window.getWindowManager().getDefaultDisplay().getWidth()  * .90),
    (int)(window.getWindowManager().getDefaultDisplay().getHeight() * .90 ));

dialog.setCancelable(false);

只需调整“.90”值,直至感觉正确。

答案 1 :(得分:0)

以下是解决方案:

  1. 您应该在对话框的xml文件外部添加一个Linearlayout
  2. 然后将此Linearlayout的重力设置为“中心”
  3. 最后一步是创建LayoutParams并将其设置为对话框

    android.view.WindowManager.LayoutParams lp = new android.view.WindowManager.LayoutParams();     lp.width = android.view.WindowManager.LayoutParams.FILL_PARENT;     lp.height = android.view.WindowManager.LayoutParams.FILL_PARENT;     alertDialog.getWindow()setAttributes(LP);