3

这里遇到了另一个奇怪的行为。这一次,尽管将所有父布局的宽度设置为 fill_parent,但我的对话框正在缩小宽度。这是图像...在此处输入图像描述

我已尝试将其作为主题设置为清单中的对话框的活动。它仍然表现相同。但是,只要我将第一个 TextView“用户协议”的 layout_width 设置为 fill_parent,它就会变得正常。但我不理解这种行为,因为它不应该依赖于 TextView 的宽度来获得它自己的宽度。请告诉我是否有任何其他有效的方法来处理这些类型的情况。我的布局代码如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@layout/gradientback"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/textView3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:text="User Agreement"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textColor="#B80303" />

    <View
        android:layout_width="fill_parent"
        android:layout_height="3dip"
        android:background="?android:attr/listDivider" >
    </View>

    <LinearLayout
        android:id="@+id/linearLayout4"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <CheckBox
            android:id="@+id/checkBoxForTermsId"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:textColor="#7B4302"
            android:text="I Agree The Terms &amp; Conditions" >
        </CheckBox>

这不是布局的完整代码,因为我认为不需要它......

显示对话框的代码如下:

private void showAgreementBox() {
        // TODO Auto-generated method stub
        final Dialog dialog = new Dialog(Launcher.this);
        dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
        dialog.setContentView(R.layout.useragreement);
        dialog.setTitle("User Agreement");
        dialog.setCancelable(false);
        final TextView userAg = (TextView) dialog.findViewById(R.id.textViewOfUserAg);
        final CheckBox checkUserAg = (CheckBox) dialog.findViewById(R.id.checkBoxForTermsId);
        final Button continueB = (Button) dialog.findViewById(R.id.continueB);
        checkUserAg.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                if (checkUserAg.isChecked() == true) {
                    continueB.setEnabled(true);
                } else {
                    continueB.setEnabled(false);
                }
            }
        });

        continueB.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                dialog.dismiss();
                //checkForTrialPeriod(isUserRegisterd);
            }
        });

        Button cancelB = (Button) dialog.findViewById(R.id.cancelB);
        cancelB.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                finish();
            }
        });
        dialog.show();
    }
4

2 回答 2

4

修复父布局的宽度

 android:layout_width="400dp"

fill_parent 适用于 Activity xml,但对于对话框,您必须设置宽度。

如果您正在寻找通用解决方案,请将图像设置为父布局中的背景,就像我们将图像放置在不同的可绘制文件夹中以支持多个屏幕一样。

您还可以使用将宽度设置为全屏

dialog.getWindow().getAttributes().width = LayoutParams.FILL_PARENT;

为什么此行为由对话框显示

对话框主题,作为其性质的一部分,将顶级窗口布局设置为 WRAP_CONTENT。您可以尝试手动将窗口布局宽度和高度设置为 FILL_PARENT。

参考了这个答案

于 2013-10-17T15:33:49.197 回答
4
setContentView(R.layout.layout_name);
    getWindow().setLayout(ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.MATCH_PARENT);

这对我有用。

于 2017-08-23T05:00:08.757 回答