2

我正在构建一个 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>

但是,这不起作用,因为当我在屏幕尺寸较小的设备上运行应用程序时,对话框片段会被剪切。

如何将对话框片段的宽度设置为屏幕大小的百分比?这是可能的,还是我必须求助于以编程方式设置它?

4

3 回答 3

6

这是一个正确的方法,如果你想让 RelativeLayout 有 40% 的屏幕宽度,但是这种技术不能应用于父布局,因为父布局没有父布局并且 android:layout_weight 不影响

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="100">

<RelativeLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="40">

</RelativeLayout>

因为我知道你不能在相对布局中使用 layout_weight

我们可以在任何视图和布局中使用 layout_weight,如果它是 LinearLayout 的直接子级

于 2015-02-25T11:44:22.147 回答
2

使用新的百分比支持库,您现在可以使用PercentRelativeLayout.

看看这个链接

于 2015-07-20T22:17:21.553 回答
0

下面的代码将使相对布局成为父级的 1/2,并将其水平居中放置:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal">

    <RelativeLayout
        android:layout_width="0dp"
        android:layout_weight="0.5"
        android:layout_height="wrap_content">

    </RelativeLayout>
</LinearLayout>

希望能帮助到你。

于 2015-02-25T11:54:27.793 回答