3

我有一个内部Button风格。这是我的 xml 文件:ActivityDialogActivity

<?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"Activityxml 文件中删除 时heightActivity更改为wrap_content并且没有问题。我想知道如何在不删除Button.

这里可以看到显示Activity的结果

android:layout_alignParentBottom="true"

在此处输入图像描述

并且没有android:layout_alignParentBottom="true"

在此处输入图像描述

4

3 回答 3

2

您可以通过设置属性来实现这一点

 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>
于 2016-06-26T15:01:05.223 回答
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>
于 2016-06-25T06:34:12.017 回答
0

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

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

正如我在我的情况下所做的那样......它可以帮助@Nava

于 2016-06-25T06:21:31.003 回答