bottom_sheet_dialog_view.xml 901 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:id="@+id/bottomSheetContainer"
  5. android:layout_width="match_parent"
  6. android:layout_height="wrap_content"
  7. android:orientation="vertical"
  8. android:paddingBottom="8dp"
  9. tools:background="@color/white">
  10. <TextView
  11. android:id="@+id/bottomSheetTitle"
  12. android:layout_width="match_parent"
  13. android:layout_height="56dp"
  14. android:ellipsize="end"
  15. android:gravity="center_vertical"
  16. android:maxLines="1"
  17. android:paddingLeft="16dp"
  18. android:paddingRight="16dp"
  19. android:textColor="?android:textColorSecondary"
  20. android:textSize="16sp"
  21. tools:text="Мастер и Маргарита — Михаил Булгаков" />
  22. </LinearLayout>