| 123456789101112131415161718192021222324 |
- <?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:id="@+id/bottomSheetContainer"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:paddingBottom="8dp"
- tools:background="@color/white">
- <TextView
- android:id="@+id/bottomSheetTitle"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:ellipsize="end"
- android:gravity="center_vertical"
- android:maxLines="1"
- android:paddingLeft="16dp"
- android:paddingRight="16dp"
- android:textColor="?android:textColorSecondary"
- android:textSize="16sp"
- tools:text="Мастер и Маргарита — Михаил Булгаков" />
- </LinearLayout>
|