2021-01-22 11:18:31 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-08-09 13:29:04 -03:00
|
|
|
tools:viewBindingIgnore="true"
|
2021-01-22 11:18:31 -05: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="wrap_content"
|
|
|
|
android:background="?selectableItemBackground">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/about_preset_emoji"
|
2021-06-21 10:54:55 -04:00
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
2021-01-22 11:18:31 -05:00
|
|
|
android:layout_marginStart="24dp"
|
2021-06-21 10:54:55 -04:00
|
|
|
android:scaleType="fitCenter"
|
2021-01-22 11:18:31 -05:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="@id/about_preset_body"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@id/about_preset_body"
|
|
|
|
tools:src="@drawable/ic_add_emoji"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/about_preset_body"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="24dp"
|
|
|
|
android:layout_marginEnd="24dp"
|
|
|
|
android:paddingTop="17dp"
|
|
|
|
android:paddingBottom="17dp"
|
|
|
|
style="@style/Signal.Text.Body"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@id/about_preset_emoji"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
tools:text="Just hangin' around the web."/>
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|