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
并且没有android:layout_alignParentBottom="true"
。
答案 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