| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?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:attr/selectableItemBackground">
- <ProgressBar
- android:id="@+id/book_progress"
- style="@style/Widget.AppCompat.ProgressBar.Horizontal"
- android:layout_width="match_parent"
- android:layout_height="2dp"
- android:layout_marginEnd="16dp"
- android:layout_marginStart="16dp"
- android:layout_marginTop="64dp"
- android:progressDrawable="@drawable/light_progress_bar_background"
- tools:progress="80" />
- <ImageView
- android:id="@+id/book_image"
- android:layout_width="40dp"
- android:layout_height="40dp"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="16dp"
- android:layout_marginStart="16dp"
- android:background="@drawable/rectangle_placeholder_background"
- tools:ignore="ContentDescription" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:orientation="vertical"
- android:paddingEnd="16dp"
- android:paddingLeft="72dp"
- android:paddingRight="16dp"
- android:paddingStart="72dp">
- <TextView
- android:id="@+id/book_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:ellipsize="end"
- android:maxLines="1"
- android:textColor="?android:attr/textColorPrimary"
- android:textSize="16sp"
- tools:text="Мастер и Маргарита" />
- <TextView
- android:id="@+id/book_author"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:ellipsize="end"
- android:maxLines="1"
- android:textColor="?android:attr/textColorSecondary"
- android:textSize="14sp"
- tools:text="Михаил Булгаков" />
- </LinearLayout>
- </FrameLayout>
|