49 lines
1.7 KiB
XML
49 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?android:listPreferredItemHeightSmall"
|
|
android:background="?android:windowBackground"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView_handle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="?listPreferredItemPaddingStart"
|
|
android:scaleType="center"
|
|
android:src="@drawable/ic_reorder_handle" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView_title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:ellipsize="marquee"
|
|
android:fadingEdge="horizontal"
|
|
android:singleLine="true"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
tools:text="@tools:sample/lorem[1]" />
|
|
|
|
<org.koitharu.kotatsu.ui.common.widgets.CheckableImageView
|
|
android:id="@+id/imageView_hidden"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
android:padding="?listPreferredItemPaddingEnd"
|
|
android:scaleType="center"
|
|
android:src="@drawable/ic_eye_checkable" />
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView_config"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
android:padding="?listPreferredItemPaddingEnd"
|
|
android:scaleType="center"
|
|
android:src="@drawable/ic_settings" />
|
|
|
|
</LinearLayout> |