android:layout_alignParentBottom="true" 将对话框 Activity 的高度从 wrap_content 更改为 match_parent
android:layout_alignParentBottom="true" changes the height of Dialog Activity from wrap_content to match_parent
我在 Activity
中有一个 Button
,样式为 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>
即使 android:windowFullscreen
为假,此 Activity
仍显示为全屏!当我从 Activity
xml 文件中删除 android:layout_alignParentBottom="true"
时, Activity
的 height
更改为 wrap_content
并且没有问题。我想知道如何在不删除 Button
.
属性的情况下解决这个问题
这里可以看到显示的结果 Activity
与 android:layout_alignParentBottom="true"
并且没有 android:layout_alignParentBottom="true"
。
尝试在创建对话框时添加此运行时...
mDialog.show();
Window window = mDialog.getWindow();
window.setLayout(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
正如我在我的案例中所做的那样......
可以帮助@Nava
为什么不使用 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>
你可以通过设置属性来实现这个
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>
我在 Activity
中有一个 Button
,样式为 Dialog
。
这是我的 Activity
:
<?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>
即使 android:windowFullscreen
为假,此 Activity
仍显示为全屏!当我从 Activity
xml 文件中删除 android:layout_alignParentBottom="true"
时, Activity
的 height
更改为 wrap_content
并且没有问题。我想知道如何在不删除 Button
.
这里可以看到显示的结果 Activity
与 android:layout_alignParentBottom="true"
并且没有 android:layout_alignParentBottom="true"
。
尝试在创建对话框时添加此运行时...
mDialog.show();
Window window = mDialog.getWindow();
window.setLayout(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
正如我在我的案例中所做的那样...... 可以帮助@Nava
为什么不使用 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>
你可以通过设置属性来实现这个
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>