2019-07-17 03:31:49 +02:00
|
|
|
<?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"
|
2020-08-24 16:30:52 +02:00
|
|
|
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">
|
2019-07-17 03:31:49 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/flair_text_view_item_flair"
|
2019-08-14 07:53:08 +02:00
|
|
|
android:layout_width="wrap_content"
|
2019-07-17 03:31:49 +02:00
|
|
|
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-07-17 03:31:49 +02:00
|
|
|
|
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"
|
2020-08-24 16:30:52 +02:00
|
|
|
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
|
|
|
|
2019-07-17 03:31:49 +02:00
|
|
|
</LinearLayout>
|