2021-09-20 17:05:31 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.cardview.widget.CardView 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_marginBottom="16dp"
|
|
|
|
app:cardCornerRadius="0dp"
|
|
|
|
app:cardElevation="0dp">
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
android:layout_marginBottom="24dp">
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.AvatarImageView
|
|
|
|
android:id="@+id/avatar"
|
|
|
|
android:layout_width="80dp"
|
|
|
|
android:layout_height="80dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
2021-09-28 16:55:07 -03:00
|
|
|
<org.thoughtcrime.securesms.badges.BadgeImageView
|
2021-09-20 17:05:31 -03:00
|
|
|
android:id="@+id/badge"
|
2021-09-28 16:55:07 -03:00
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="32dp"
|
2021-09-20 17:05:31 -03:00
|
|
|
android:contentDescription="@string/BadgesOverviewFragment__featured_badge"
|
2021-09-28 16:55:07 -03:00
|
|
|
app:badge_size="large"
|
2021-09-20 17:05:31 -03:00
|
|
|
app:layout_constraintBottom_toBottomOf="@id/avatar"
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/avatar" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
</androidx.cardview.widget.CardView>
|