два или более вложенных RelativeLayout - PullRequest
9 голосов
/ 12 октября 2011

Я хочу спросить, работая с двумя или более вложенными RelativeLayout. Первый код выглядит как рисунок 1, когда я добавляю android:layout_alignParentRight="true" во второй RelativeLayout, это выглядит как рисунок 2. Я хочу выровнять текст справа до второго RelativeLayout. Где моя вина?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content"
        android:background="@drawable/background"
        android:layout_height="wrap_content"
        android:id="@+id/testRL">
        <RelativeLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_alignParentTop="true"
                android:id="@+id/testRotateLL"
                android:background="@drawable/picture_border_offer_first_page">
                <TextView
                        android:layout_height="wrap_content"
                        android:layout_width="wrap_content"
                        android:text="7000TL"
                        android:textSize="15sp"
                        android:textColor="@android:color/white"
                        android:id="@+id/amountLayoutTV" />
        </RelativeLayout>
</RelativeLayout>

Изображение 1:

Picture 1

И я добавляю android:layout_alignParentRight="true"

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:background="@drawable/background"
    android:layout_height="wrap_content"
    android:id="@+id/testRL">
    <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:id="@+id/testRotateLL"
            android:background="@drawable/picture_border_offer_first_page">
            <TextView
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="7000TL"
                    android:layout_alignParentRight="true"
                    android:textSize="15sp"
                    android:textColor="@android:color/white"
                    android:id="@+id/amountLayoutTV" />
    </RelativeLayout>
</RelativeLayout>

Изображение 2:

Picture 2

Ответы [ 2 ]

4 голосов
/ 19 марта 2013

На этот вопрос нет ответа.Когда я обновил версию ADT, эта проблема решена.Я думаю, что произошла ошибка.

Предлагаю вам иногда проверить версию ADT ...

0 голосов
/ 14 октября 2011

В первом RelativeLayout у вас есть:

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

Вы, вероятно, хотите:

android:layout_width="fill_parent"
android:layout_height="fill_parent"
...