2018-10-23 23:37:09 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-06-24 15:14:34 -04:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-06-03 11:26:49 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-10-23 23:37:09 -07:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-06-24 15:14:34 -04:00
|
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
|
|
tools:layout_height="60dp">
|
2018-10-23 23:37:09 -07:00
|
|
|
|
2021-06-24 15:14:34 -04:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2018-10-23 23:37:09 -07:00
|
|
|
android:id="@+id/emoji_image"
|
2021-07-13 19:37:30 -04:00
|
|
|
android:layout_width="34dp"
|
|
|
|
android:layout_height="34dp"
|
2021-06-24 15:14:34 -04:00
|
|
|
android:layout_gravity="center"
|
2021-06-03 11:26:49 -03:00
|
|
|
android:adjustViewBounds="true"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
tools:src="@drawable/ic_emoji_smiley_24" />
|
2018-10-23 23:37:09 -07:00
|
|
|
|
2021-06-24 15:14:34 -04:00
|
|
|
</FrameLayout>
|