Infinity-For-Lemmy/app/src/main/res/layout/item_flair.xml

32 lines
1.2 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2019-08-14 07:53:08 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
2019-08-14 07:53:08 +02:00
android:clickable="true"
android:focusable="true"
android:background="?attr/selectableItemBackground">
<TextView
android:id="@+id/flair_text_view_item_flair"
2019-08-14 07:53:08 +02:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="16dp"
2020-02-27 09:58:15 +01:00
android:textColor="?attr/primaryTextColor"
2020-06-10 06:22:19 +02:00
android:textSize="?attr/font_default"
android:fontFamily="?attr/font_family" />
2019-08-14 07:53:08 +02:00
<ImageView
android:id="@+id/edit_flair_image_view_item_flair"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_gravity="center_vertical|end"
android:layout_marginStart="32dp"
2020-09-17 05:08:06 +02:00
android:src="@drawable/ic_edit_24dp"
2019-08-14 07:53:08 +02:00
android:visibility="gone"
app:tint="?attr/primaryTextColor"
2019-08-14 07:53:08 +02:00
android:background="?actionBarItemBackground"
android:clickable="true"
android:focusable="true" />
2020-09-17 05:08:06 +02:00
</LinearLayout>