3

I am using this layout to make image and text in center.but its not working .i am simply using android:layout_centerHorizontal="true".why its not working i dont understand. can someone please help to solve this problem?

<?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_parentルートを試してください:

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

また、LinearLayoutwithorientation="vertical"gravity="center_horizontal"は同じことをより簡単に行います。

于 2013-02-23T13:34:12.753 に答える
0

[android:layout_centerHorizo​​ntal="true"] を RelativeLayout レイアウトで使用すると、機能します

<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 に答える