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"
|
|
|
|
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"
|
2019-08-14 07:53:08 +02:00
|
|
|
android:textColor="@color/primaryTextColor" />
|
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"
|
|
|
|
android:src="@drawable/ic_outline_edit_24px"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:tint="@color/primaryTextColor"
|
|
|
|
android:background="?actionBarItemBackground"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true" />
|
2019-07-17 03:31:49 +02:00
|
|
|
</LinearLayout>
|