android:layout_alignParentBottom =“true”将对话框活动的高度从wrap_content更改为match_parent

时间:2016-06-25 06:11:15

标签: android android-activity android-dialog android-relativelayout android-wrap-content

Button内置Activity Dialog样式。 这是我Activity的xml文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:text="Button" />

</RelativeLayout>

以下是Activity的样式,可将其显示为Dialog

<style name="Modal" parent="Theme.AppCompat.Light.Dialog">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
        <item name="android:windowFullscreen">false</item>
        <item name="android:windowContentOverlay">@null</item>
    </style>

即使Activity为假,此android:windowFullscreen也会全屏显示!当我从android:layout_alignParentBottom="true" xml文件中删除Activity时,height的{​​{1}}更改为Activity并且没有问题。我想知道如何在不删除wrap_content的属性的情况下解决此问题。

在这里您可以看到显示活动

的结果

Button

enter image description here

并且没有android:layout_alignParentBottom="true"

enter image description here

3 个答案:

答案 0 :(得分:1)

为什么不使用FrameLayout

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:text="Button" />

</FrameLayout>

答案 1 :(得分:1)

您可以通过设置属性

来实现此目的
 android:layout_alignParentBottom="true"

以编程方式使用以下代码

    RelativeLayout relativeLayout = view.findViewById(R.id.relative_layout);
    Button button = relativeLayout.findViewById(R.id.button);
    RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
    params.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM, view.getId());
    button.setLayoutParams(params);

在您的xml文件中,您需要设置 id属性并删除 android:layout_alignParentBottom =“true”

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:id="@+id/relative_layout"
android:layout_height="match_parent">

<Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/button"
    android:text="Button" />

</RelativeLayout>

答案 2 :(得分:0)

尝试在创建对话框时添加此运行时...

mDialog.show();
Window window = mDialog.getWindow();
window.setLayout(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);

正如我在案件中所做的那样...... 可以帮助@Nava