使用相对布局无法完全显示聊天框

时间:2018-07-22 06:30:17

标签: android android-layout chat android-relativelayout nine-patch

您好,我正在创建聊天布局,但是聊天消息,如果聊天消息很长,时间就会被隐藏起来。我可以在预览中看到相对布局(senderChatLL)超出屏幕。我在后台使用了9个补丁图像。

这是我的代码

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

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="@dimen/dimen_20dp"
    android:orientation="horizontal"
    android:gravity="right"
    >

    <RelativeLayout
        android:id="@+id/senderChatLL"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/ic_sender_bg"
        android:gravity="center"
        android:paddingLeft="@dimen/dim_10dp"
        android:paddingRight="@dimen/dim_30dp"
        android:paddingTop="@dimen/dim_10dp"
        android:paddingBottom="@dimen/dim_10dp"
        android:layout_centerInParent="true">

        <TextView
            android:id="@+id/chatText"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="erjk dcvsdf"
            android:textColor="@color/white"
            android:textSize="@dimen/text_size_14sp"
            android:layout_marginLeft="@dimen/dim_5dp"
            />

        <TextView
            android:id="@+id/senderChatTime"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="@dimen/dim_15dp"
            android:text="Jul 21"
            android:textColor="@color/white"
            android:textSize="@dimen/text_size_14sp"
            android:visibility="visible"
            android:layout_toRightOf="@+id/chatText"
            android:layout_marginRight="@dimen/dim_5dp"
            />

    </RelativeLayout>

    <de.hdodenhof.circleimageview.CircleImageView
        android:id="@+id/sender_handler_image"
        android:layout_width="@dimen/dim_50dp"
        android:layout_height="@dimen/dimen_50dp"
        android:src="@drawable/ic_no_user_img"
        android:layout_toRightOf="@+id/senderChatLL"
        android:layout_marginLeft="@dimen/dim_2dp"
        android:layout_centerInParent="true"/>

</RelativeLayout>

还附有屏幕截图。 请帮助我解决问题。enter image description here

0 个答案:

没有答案