RelativeLayout不会包装右对齐的TextView

时间:2015-04-23 00:48:18

标签: android xml android-layout

在我的消息传递应用程序的XML中,右对齐消息(传出),我无法获取RelativeLayout来包装它的内容(一个与右边对齐的TextView) )。我会张贴一张照片,但我是新来的,在此之前需要更多的声誉。

包含文本(消息)的RelativeLayout有一个文本气泡背景,我希望它能很好地环绕文本。我在其他XML文件中轻松使用它,用于左对齐消息(传入)。

要指定,我的问题在于最里面的RelativeLayout。

这是我的代码:

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="10dp">

    <RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent"
                    android:layout_marginStart="10dp">
        <TextView
                android:id="@+id/txtSender"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:text=""
                android:textSize="16sp"
                android:singleLine="true"
                android:layout_alignParentEnd="true"
                android:paddingRight="10dp"
                android:paddingLeft="10dp"
                android:textColor="@android:color/black" android:textStyle="bold"/>

        <TextView
                android:id="@+id/txtDate"
                android:layout_alignParentStart="true"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:paddingLeft="2dp"
                android:paddingRight="2dp"
                android:paddingBottom="2dp"
                android:textSize="12sp"
                android:text=""
                android:layout_alignBottom="@+id/txtSender"
                />

        <RelativeLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/txtSender"
                android:padding="5dp"
                android:background="@drawable/purple_bubble"
                android:layout_alignParentEnd="true"
                android:layout_toEndOf="@+id/txtDate">

            <TextView
                    android:id="@+id/txtMessage"
                    android:paddingEnd="15dp"
                    android:paddingStart="7dp"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentEnd="true"
                    android:textColor="@android:color/black"
                    android:text="Hello, how are you?"/>
        </RelativeLayout>
    </RelativeLayout>
</RelativeLayout>

2 个答案:

答案 0 :(得分:1)

在相对布局中包含线性布局。将布局重力添加到线性布局。这就是我做到的。你可以用它作为参考,

 <?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">

<LinearLayout
    android:id="@+id/layoutSms"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="right"
    android:layout_alignParentRight="true"
    android:background="@drawable/txt_green"
    android:orientation="vertical">

    <TextView
        android:id="@+id/txtSms"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="TextView" />

    <TextView
        android:id="@+id/txtSmsDate"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:textColor="#1E2CED"
        android:text="TextView"
        android:textSize="10dp" />


   </LinearLayout>
</RelativeLayout>

答案 1 :(得分:0)

我只是尝试删除textMessage中的代码cf push myapp -b https://github.com/heroku/heroku-buildpack-play.git ,我看到文本是左对齐的。

我不知道为什么会这样,而且我不知道你真正想要什么,只是左对齐?也许你可以尝试这个或使用其他布局来构建你的应用程序。