117 lines
4.3 KiB
XML
117 lines
4.3 KiB
XML
<?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:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="4dp"
|
|
android:layout_marginTop="4dp"
|
|
android:layout_marginEnd="4dp">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/left_badges"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/rounded_rectangle">
|
|
|
|
<TextView
|
|
android:id="@+id/local_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/colorTertiary"
|
|
android:maxLines="1"
|
|
android:paddingStart="3dp"
|
|
android:paddingTop="1dp"
|
|
android:paddingEnd="3dp"
|
|
android:paddingBottom="1dp"
|
|
android:fontFamily="sans-serif-condensed"
|
|
android:text="@string/local_source_badge"
|
|
android:textAppearance="?attr/textAppearanceBodySmall"
|
|
android:textColor="?attr/colorOnTertiary"
|
|
android:visibility="gone"
|
|
tools:visibility="visible" />
|
|
|
|
<TextView
|
|
android:id="@+id/download_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/colorTertiary"
|
|
android:maxLines="1"
|
|
android:paddingStart="3dp"
|
|
android:paddingTop="1dp"
|
|
android:paddingEnd="3dp"
|
|
android:paddingBottom="1dp"
|
|
android:fontFamily="sans-serif-medium"
|
|
android:textAppearance="?attr/textAppearanceBodySmall"
|
|
android:textColor="?attr/colorOnTertiary"
|
|
android:visibility="gone"
|
|
tools:text="120"
|
|
tools:visibility="visible" />
|
|
|
|
<TextView
|
|
android:id="@+id/unread_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/colorSecondary"
|
|
android:maxLines="1"
|
|
android:paddingStart="3dp"
|
|
android:paddingTop="1dp"
|
|
android:paddingEnd="3dp"
|
|
android:paddingBottom="1dp"
|
|
android:fontFamily="sans-serif-medium"
|
|
android:textAppearance="?attr/textAppearanceBodySmall"
|
|
android:textColor="?attr/colorOnSecondary"
|
|
android:visibility="gone"
|
|
tools:text="120"
|
|
tools:visibility="visible" />
|
|
|
|
<TextView
|
|
android:id="@+id/favorite_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/colorSecondary"
|
|
android:maxLines="1"
|
|
android:paddingStart="3dp"
|
|
android:paddingTop="1dp"
|
|
android:paddingEnd="3dp"
|
|
android:paddingBottom="1dp"
|
|
android:fontFamily="sans-serif-condensed"
|
|
android:text="@string/in_library"
|
|
android:textAppearance="?attr/textAppearanceBodySmall"
|
|
android:textColor="?attr/colorOnSecondary"
|
|
android:visibility="gone"
|
|
tools:visibility="visible" />
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/right_badges"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/rounded_rectangle">
|
|
|
|
<TextView
|
|
android:id="@+id/language_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/colorTertiary"
|
|
android:maxLines="1"
|
|
android:paddingStart="3dp"
|
|
android:paddingTop="1dp"
|
|
android:paddingEnd="3dp"
|
|
android:paddingBottom="1dp"
|
|
android:fontFamily="sans-serif-condensed"
|
|
android:textAppearance="?attr/textAppearanceBodySmall"
|
|
android:textColor="?attr/colorOnTertiary"
|
|
android:visibility="gone"
|
|
tools:text="EN"
|
|
tools:visibility="visible" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|