如何在ConstraintLayout中

时间:2017-02-12 07:04:57

标签: android android-layout android-xml messagebox

我有这个Android xml布局看起来像这样,你看它有聊天气泡。我想将其从LinearLayout转换为ConstraintLayout

这是LinearLayout版本,看起来不错

enter image description here

这是ConstraintLayout版本,聊天内容看起来不太好看。

enter image description here

我想要一些这方面的帮助。你看到的箭头很难约束,所以看起来不错。我添加了一个android.support.constraint.Guideline来做一些约束但不起作用。

这是ConstraintLayout xml

    <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="end|center_vertical">

    <com.github.curioustechizen.ago.RelativeTimeTextView
        android:id="@+id/timestamp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="?AppTheme.ChatBubbleTextColor"
        android:textSize="@dimen/chat_timestamp_text_size"
        tools:text="Just Now"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="1.0"
        app:layout_constraintRight_toLeftOf="@+id/message"
        android:layout_marginEnd="8dp"
        android:layout_marginRight="8dp" />

    <TextView
        android:id="@+id/message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/bg_balloon"
        android:padding="8dp"
        android:textColor="?AppTheme.ChatBubbleTextColor"
        android:textSize="@dimen/chat_message_body_text_size"
        tools:text="This is chat message"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintRight_toLeftOf="@+id/guideline1"
        app:layout_constraintBottom_toBottomOf="parent"
        android:layout_marginTop="8dp"
        android:layout_marginBottom="8dp" />

    <android.support.constraint.Guideline
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/guideline1"
        android:orientation="vertical"
        tools:layout_editor_absoluteY="0dp"
        tools:layout_editor_absoluteX="218dp"
        app:layout_constraintGuide_percent="0.859375" />

    <View
        android:layout_width="8dp"
        android:layout_height="8dp"
        android:background="?AppTheme.ChatBubbleBackGroundColor"
        android:rotation="45"
        android:id="@+id/view"
        app:layout_constraintRight_toLeftOf="@+id/thumbnail"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="@+id/guideline1"
        app:layout_constraintHorizontal_bias="0.0"
        android:layout_marginEnd="16dp"
        android:layout_marginRight="16dp" />

    <ImageView
        android:id="@+id/thumbnail"
        android:layout_width="22dp"
        android:layout_height="24dp"
        tools:src="@drawable/tw__composer_logo_blue"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        android:layout_marginEnd="8dp"
        app:layout_constraintRight_toRightOf="parent"
        android:layout_marginRight="8dp" />

</android.support.constraint.ConstraintLayout>

也许GitHub的某些图书馆会产生气泡,或者对此有任何想法会很棒?

1 个答案:

答案 0 :(得分:0)

我想我已经解决了这个问题,感谢ChatMessageView

$('#demo').text(data.query.results.quote.Name);