mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2025-01-08 17:27:12 +01:00
37 lines
1.3 KiB
XML
37 lines
1.3 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"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:background="?attr/selectableItemBackground">
|
|
|
|
<TextView
|
|
android:id="@+id/flair_text_view_item_flair"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:paddingTop="16dp"
|
|
android:paddingBottom="16dp"
|
|
android:paddingStart="32dp"
|
|
android:paddingEnd="32dp"
|
|
android:textColor="?attr/primaryTextColor"
|
|
android:textSize="?attr/font_default"
|
|
android:fontFamily="?attr/font_family" />
|
|
|
|
<ImageView
|
|
android:id="@+id/edit_flair_image_view_item_flair"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical|end"
|
|
android:paddingStart="32dp"
|
|
android:paddingEnd="32dp"
|
|
android:src="@drawable/ic_edit_24dp"
|
|
android:visibility="gone"
|
|
app:tint="?attr/primaryTextColor"
|
|
android:background="?actionBarItemBackground"
|
|
android:clickable="true"
|
|
android:focusable="true" />
|
|
|
|
</LinearLayout> |