komikku/app/src/main/res/layout/migration_source_item.xml

38 lines
1.3 KiB
XML
Raw Normal View History

2019-07-31 01:29:12 +02:00
<?xml version="1.0" encoding="utf-8"?>
2022-01-16 17:45:38 +01:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2019-07-31 01:29:12 +02:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2022-01-16 17:45:38 +01:00
xmlns:tools="http://schemas.android.com/tools"
2019-07-31 01:29:12 +02:00
android:layout_width="match_parent"
android:layout_height="56dp"
android:background="@drawable/list_item_selector_background">
2019-07-31 01:29:12 +02:00
<ImageView
android:id="@+id/image"
android:layout_width="56dp"
android:layout_height="56dp"
android:paddingStart="16dp"
2019-07-31 01:29:12 +02:00
android:paddingEnd="0dp"
2022-01-16 17:45:38 +01:00
tools:src="@mipmap/ic_launcher_round" />
2019-07-31 01:29:12 +02:00
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2022-01-16 17:45:38 +01:00
android:layout_gravity="center_vertical"
android:layout_marginStart="72dp"
android:layout_marginEnd="56dp"
2019-07-31 01:29:12 +02:00
android:ellipsize="end"
android:maxLines="1"
2021-11-15 00:43:38 +01:00
android:textAppearance="?attr/textAppearanceTitleSmall"
2022-01-16 17:45:38 +01:00
tools:text="Title" />
2019-07-31 01:29:12 +02:00
<ImageView
android:id="@+id/reorder"
android:layout_width="56dp"
android:layout_height="56dp"
2019-07-31 01:29:12 +02:00
android:layout_gravity="end"
2022-01-16 17:45:38 +01:00
android:scaleType="center"
app:srcCompat="@drawable/ic_drag_handle_24dp"
app:tint="?android:attr/textColorPrimary" />
2019-07-31 01:29:12 +02:00
</FrameLayout>