| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?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:layout_width="match_parent"
- android:layout_height="48dp"
- android:background="?android:windowBackground"
- tools:ignore="Overdraw">
- <View
- android:id="@+id/headerDivider"
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:background="?recycler_divider_color"
- android:visibility="invisible" />
- <TextView
- android:id="@+id/headerTitle"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="16dp"
- android:layout_marginRight="16dp"
- android:fontFamily="sans-serif-medium"
- android:textColor="?android:textColorSecondary"
- android:textSize="14sp"
- tools:text="К прочтению" />
- <TextView
- android:id="@+id/headerCount"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="end|center_vertical"
- android:layout_marginLeft="16dp"
- android:layout_marginRight="16dp"
- android:fontFamily="sans-serif"
- android:textColor="?android:textColorTertiary"
- android:textSize="14sp"
- tools:text="12 книг" />
- <View
- android:id="@+id/headerBottomDivider"
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:layout_gravity="bottom"
- android:background="?recycler_divider_color"
- android:visibility="invisible" />
- </FrameLayout>
|