我正在构建一个 android 应用程序,并且我有一个对话框片段。对话框片段具有设定的宽度。但是,问题是当应用程序在具有不同屏幕尺寸的设备上运行时,对话框片段没有正确居中。
最初,我所拥有的是:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="500dp"
android:layout_height="wrap_content">
<-- code goes here -->
</RelativeLayout>
如您所见,我有一个定义宽度的 relativeLayout。因为我知道你不能layout_weight
在相对布局中使用,所以我所做的就是将父相对布局包装在线性布局中,如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.8"
android:weightSum="1">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</RelativeLayout>
</LinearLayout>
但是,这不起作用,因为当我在屏幕尺寸较小的设备上运行应用程序时,对话框片段会被剪切。
如何将对话框片段的宽度设置为屏幕大小的百分比?这是可能的,还是我必须求助于以编程方式设置它?