mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2025-01-09 17:57:10 +01:00
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:background="?attr/selectableItemBackground">
|
|
|
|
<TextView
|
|
android:id="@+id/flair_text_view_item_flair"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="16dp"
|
|
android:textColor="?attr/primaryTextColor"
|
|
android:textSize="?attr/font_default" />
|
|
|
|
<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="?attr/primaryTextColor"
|
|
android:background="?actionBarItemBackground"
|
|
android:clickable="true"
|
|
android:focusable="true" />
|
|
</LinearLayout> |