| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/book_item_container"
- android:layout_width="match_parent"
- android:layout_height="72dp"
- android:foreground="?android:selectableItemBackground">
- <ProgressBar
- android:id="@+id/bookProgress"
- style="@style/Widget.AppCompat.ProgressBar.Horizontal"
- android:layout_width="match_parent"
- android:layout_height="2dp"
- android:layout_marginLeft="16dp"
- android:layout_marginTop="64dp"
- android:layout_marginRight="16dp"
- android:progressDrawable="@drawable/progress_bar_background_dark"
- tools:progress="80" />
- <ImageView
- android:id="@+id/bookImage"
- android:layout_width="40dp"
- android:layout_height="40dp"
- android:layout_gravity="center_vertical"
- android:layout_marginStart="16dp"
- tools:ignore="ContentDescription"
- tools:src="@drawable/rectangle_placeholder_background" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:orientation="vertical"
- android:paddingStart="72dp"
- android:paddingEnd="16dp">
- <TextView
- android:id="@+id/bookTitle"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:ellipsize="end"
- android:maxLines="1"
- android:textColor="?android:textColorPrimary"
- android:textSize="16sp"
- tools:text="Мастер и Маргарита" />
- <TextView
- android:id="@+id/bookAuthor"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:ellipsize="end"
- android:maxLines="1"
- android:textColor="?android:textColorSecondary"
- android:textSize="14sp"
- tools:text="Михаил Булгаков" />
- </LinearLayout>
- </FrameLayout>
|