2020-01-20 10:04:36 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-03-24 07:07:36 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-01-20 10:04:36 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/cover_layout"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginBottom="10dp">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/manga_cover"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:adjustViewBounds="true"
|
|
|
|
android:layout_height="150dp"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:contentDescription="@string/cover_of_image"
|
2020-01-20 10:04:36 +01:00
|
|
|
android:background="@drawable/image_border_background"
|
|
|
|
android:src="@mipmap/ic_launcher"/>
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<EditText
|
2020-04-17 02:41:07 +02:00
|
|
|
android:id="@+id/title"
|
2020-01-20 10:04:36 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:hint="@string/title"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:inputType="text"
|
|
|
|
android:maxLines="1"/>
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/manga_author"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:hint="@string/author"
|
2020-01-20 10:04:36 +01:00
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:inputType="text"
|
|
|
|
android:maxLines="1"/>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/manga_artist"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:hint="@string/artist"
|
2020-01-20 10:04:36 +01:00
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:inputType="text"
|
|
|
|
android:maxLines="1"/>
|
|
|
|
|
2020-01-20 21:34:20 +01:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/manga_description"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:hint="@string/description"
|
|
|
|
android:inputType="text|textMultiLine"
|
|
|
|
android:scrollHorizontally="false" />
|
|
|
|
|
2020-01-20 10:04:36 +01:00
|
|
|
<me.gujun.android.taggroup.TagGroup
|
|
|
|
android:id="@+id/manga_genres_tags"
|
|
|
|
style="@style/TagGroup"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
app:atg_borderStrokeWidth="1dp"
|
|
|
|
app:atg_backgroundColor="@android:color/transparent"
|
|
|
|
app:atg_isAppendMode="true"
|
|
|
|
app:atg_inputHintColor="?android:attr/textColorSecondary"
|
|
|
|
app:atg_inputTextColor="?android:attr/textColorPrimary"
|
|
|
|
app:atg_checkedBackgroundColor="@color/red_error"
|
|
|
|
app:atg_checkedBorderColor="@color/red_error"
|
|
|
|
app:atg_borderColor="@color/md_blue_A400"
|
|
|
|
app:atg_textColor="@color/md_blue_A400" />
|
|
|
|
|
2020-01-28 06:40:35 +01:00
|
|
|
<Button
|
|
|
|
android:id="@+id/reset_tags"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-03-16 09:52:30 +01:00
|
|
|
style="@style/Theme.Widget.Button.Primary"
|
|
|
|
android:textAllCaps="false"
|
2020-01-28 06:40:35 +01:00
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginStart="16dp"
|
2020-03-16 09:52:30 +01:00
|
|
|
android:text="@string/clear_tags" />
|
2020-01-28 06:40:35 +01:00
|
|
|
|
2020-01-20 10:04:36 +01:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="?android:attr/divider"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|