android 即使所有父layout_width设置为fill_parent,对话框仍在缩小

wrrgggsh  于 2022-12-31  发布在  Android
关注(0)|答案(2)|浏览(108)

另一个奇怪的行为在这里遇到。这次我的对话框是缩小宽度明智的,尽管设置所有父布局的宽度为fill_parent。
我试过在清单中将主题设置为Dialog的Activity。它的行为仍然是一样的。但是,当我将第一个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();
    }
00jrzges

00jrzges1#

固定父布局的宽度

android:layout_width="400dp"

fill_parent适用于Activity xml,但对于对话框,您必须设置宽度。
如果你正在寻找一个通用的解决方案设置一个图像作为背景在父布局就像我们把图像放在不同的可绘制文件夹,以支持多个屏幕。
您也可以使用将宽度设置为全屏

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

为什么对话框会显示这种行为(引用Dianne Hackborn的这篇文章)

对话框主题,作为其本质的一部分,将顶层窗口布局设置为WRAP_CONTENT。您可以尝试手动将窗口布局宽度和高度设置为FILL_PARENT [...]
也参考了此answer

euoag5mw

euoag5mw2#

setContentView(R.layout.layout_name);
    getWindow().setLayout(ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.MATCH_PARENT);

这对我很有效。

相关问题