* Manga detail Also adjust chapter item layout to accommodate bigger display/font size * Library * Updates * History * Browse * Preferences * Button * Navigation view * category-download * Google Sans * Reader * Chips * Revert "Google Sans" This reverts commit 5dd4c41f * Misc * Cleanups * Section header text appearance * Increase library manga title size * Revert "Increase library manga title size" This reverts commit 474be913 * Increase section header letter spacing * Derps
37 lines
1.2 KiB
XML
37 lines
1.2 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="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
<TextView
|
|
android:id="@+id/text_face"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:textAppearance="?attr/textAppearanceBody2"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:textSize="48sp"
|
|
tools:text="-_-" />
|
|
|
|
<TextView
|
|
android:id="@+id/text_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="16dp"
|
|
android:gravity="center"
|
|
android:textAppearance="?attr/textAppearanceBody2"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
tools:text="Label" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/actions_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal" />
|
|
|
|
</LinearLayout>
|