3

我正在使用此布局在中心制作图像和文本。但它不起作用。我只是使用 android:layout_centerHorizo​​ntal="true"。为什么它不起作用我不明白。有人可以帮忙解决这个问题吗?

<?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#ffffff">


        <ImageView
            android:id="@+id/image"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="70dp"
            android:background="@drawable/image_tutorial1" />

        <TextView
            android:textSize="14dp"
            android:id="@+id/title"
            android:layout_below="@+id/image"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:text="@string/info4"
            android:textColor="#000000"
            android:textStyle="bold" />

    </RelativeLayout>
4

4 回答 4

6

在布局中,RelativeLayout的宽度设置为wrap-content,它根本没有占用整个可用宽度。它的内容居中,但他们的父母View正在缩小以适应他们。

尝试fill_parentroot:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"

此外,a LinearLayoutwith orientation="vertical"andgravity="center_horizontal"将做同样的事情,更容易。

于 2013-02-23T13:34:12.753 回答
4

使用相对布局:

android:layout_centerInParent="true"

android:layout_width="wrap_content"
于 2018-03-24T21:22:46.590 回答
0

在RelativeLayout布局下使用[android:layout_centerHorizo​​ntal="true"],然后就可以了

<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
于 2013-02-23T13:15:41.643 回答
0

你为你的 RelativeLayout 使用了这个错误

    android:layout_width="wrap_content"
    android:layout_height="wrap_content"

它应该是

android:layout_height="match_parent"
android:layout_width="match_parent"
于 2018-03-24T21:25:56.797 回答