Yuito-app-android/app/src/main/res/layout/item_saved_toot.xml

26 lines
893 B
XML
Raw Normal View History

<?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">
<TextView
android:id="@+id/content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.91"
android:padding="8dp" />
<ImageButton
android:id="@+id/suppr"
style="?attr/image_button_style"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_gravity="center_vertical"
2017-07-05 16:36:14 +02:00
android:padding="16dp"
android:layout_margin="16dp"
2017-07-05 16:36:14 +02:00
android:contentDescription="@string/action_unmute"
app:srcCompat="@drawable/ic_clear_24dp" />
</LinearLayout>