2019-11-12 10:18:57 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-11-14 14:39:42 -05:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-11-12 10:18:57 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="68dp">
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.AvatarImageView
|
|
|
|
android:id="@+id/recipient_avatar"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
2019-11-13 09:15:48 -04:00
|
|
|
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
2019-11-12 10:18:57 -04:00
|
|
|
android:id="@+id/recipient_display_name"
|
2019-11-13 09:15:48 -04:00
|
|
|
android:layout_width="0dip"
|
2019-11-12 10:18:57 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="9dp"
|
2019-11-13 09:15:48 -04:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2019-11-12 10:18:57 -04:00
|
|
|
android:textAppearance="@style/TextAppearance.Signal.Title.Insights"
|
2019-11-13 09:15:48 -04:00
|
|
|
app:layout_constraintEnd_toStartOf="@id/recipient_invite"
|
2019-11-12 10:18:57 -04:00
|
|
|
app:layout_constraintStart_toEndOf="@id/recipient_avatar"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2019-11-14 14:39:42 -05:00
|
|
|
app:layout_constraintVertical_chainStyle="packed"
|
|
|
|
tools:text="Peter Parker (This is a long name to make sure we stick within our bounds)" />
|
2019-11-12 10:18:57 -04:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/recipient_invite"
|
|
|
|
style="@style/Button.Borderless"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="16dp"
|
|
|
|
android:text="@string/conversation_insecure__invite"
|
|
|
|
android:textAppearance="@style/TextAppearance.Signal.Caption.Insights"
|
|
|
|
android:textColor="@color/signal_primary"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|