28 lines
1.0 KiB
XML
28 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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:orientation="horizontal">
|
|
|
|
<androidx.emoji.widget.EmojiTextView
|
|
android:id="@+id/content"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0.91"
|
|
android:padding="8dp"
|
|
android:textSize="?attr/status_text_medium" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/suppr"
|
|
style="@style/TuskyImageButton"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_margin="12dp"
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
android:contentDescription="@string/action_delete"
|
|
android:padding="4dp"
|
|
app:srcCompat="@drawable/ic_clear_24dp" />
|
|
|
|
</LinearLayout> |