2015-10-17 13:51:54 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-02-13 12:08:15 +01:00
|
|
|
<android.support.design.widget.CoordinatorLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-02-14 14:00:44 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context="eu.kanade.tachiyomi.ui.catalogue.CatalogueFragment">
|
2015-10-17 13:51:54 +02:00
|
|
|
|
2015-12-05 02:05:42 +01:00
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
2016-02-14 14:00:44 +01:00
|
|
|
android:id="@id/swipe_refresh"
|
2015-10-17 13:51:54 +02:00
|
|
|
android:layout_width="match_parent"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_height="match_parent">
|
2015-10-17 13:51:54 +02:00
|
|
|
|
2016-02-14 14:00:44 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/global_view"
|
2015-10-17 13:51:54 +02:00
|
|
|
android:layout_width="match_parent"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2015-10-17 13:51:54 +02:00
|
|
|
|
2016-02-14 14:00:44 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/top_view"
|
2015-12-05 02:05:42 +01:00
|
|
|
android:layout_width="match_parent"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="0.4">
|
2015-12-05 02:05:42 +01:00
|
|
|
|
2016-02-14 14:00:44 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/backdrop"
|
2016-01-03 13:48:14 +01:00
|
|
|
android:layout_width="match_parent"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:alpha="0.2"
|
|
|
|
android:contentDescription="@string/description_backdrop"/>
|
2015-12-05 02:05:42 +01:00
|
|
|
|
2016-02-14 14:00:44 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="horizontal">
|
2016-01-03 13:48:14 +01:00
|
|
|
|
2016-02-14 14:00:44 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/manga_cover"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_margin="@dimen/activity_vertical_margin"
|
|
|
|
android:layout_weight="0.35"
|
|
|
|
android:contentDescription="@string/description_cover"/>
|
2016-01-03 13:48:14 +01:00
|
|
|
|
|
|
|
<RelativeLayout
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_margin="@dimen/activity_vertical_margin"
|
|
|
|
android:layout_weight="0.65">
|
|
|
|
|
|
|
|
|
|
|
|
<android.support.v4.widget.NestedScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/manga_author_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_author_label"
|
2016-03-12 14:22:40 +01:00
|
|
|
style="@style/TextAppearance.Medium.Body2"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:singleLine="true"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:text="@string/manga_info_author_label"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:textIsSelectable="false"
|
2016-02-14 14:00:44 +01:00
|
|
|
/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_author"
|
2016-03-12 14:22:40 +01:00
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textIsSelectable="false"
|
2016-02-14 14:00:44 +01:00
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/manga_artist_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/manga_author_view"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_artist_label"
|
2016-03-12 14:22:40 +01:00
|
|
|
style="@style/TextAppearance.Medium.Body2"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:singleLine="true"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:text="@string/manga_info_artist_label"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:textIsSelectable="false"
|
2016-02-14 14:00:44 +01:00
|
|
|
/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_artist"
|
2016-03-12 14:22:40 +01:00
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textIsSelectable="false"
|
2016-02-14 14:00:44 +01:00
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/manga_chapters_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/manga_artist_view"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_chapters_label"
|
2016-03-12 14:22:40 +01:00
|
|
|
style="@style/TextAppearance.Medium.Body2"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:singleLine="true"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:text="@string/manga_info_chapters_label"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:textIsSelectable="false"
|
2016-02-14 14:00:44 +01:00
|
|
|
/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_chapters"
|
2016-03-12 14:22:40 +01:00
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textIsSelectable="false"
|
2016-02-14 14:00:44 +01:00
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/manga_status_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/manga_chapters_view"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_status_label"
|
2016-03-12 14:22:40 +01:00
|
|
|
style="@style/TextAppearance.Medium.Body2"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:singleLine="true"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:text="@string/manga_info_status_label"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:textIsSelectable="false"
|
2016-02-14 14:00:44 +01:00
|
|
|
/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_status"
|
2016-03-12 14:22:40 +01:00
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textIsSelectable="false"
|
2016-02-14 14:00:44 +01:00
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/manga_source_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/manga_status_view"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_source_label"
|
2016-03-12 14:22:40 +01:00
|
|
|
style="@style/TextAppearance.Medium.Body2"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:singleLine="true"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:text="@string/manga_info_source_label"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:textIsSelectable="false"
|
2016-02-14 14:00:44 +01:00
|
|
|
/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_source"
|
2016-03-12 14:22:40 +01:00
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textIsSelectable="false"
|
2016-02-14 14:00:44 +01:00
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/manga_genres_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/manga_source_view"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_genres_label"
|
2016-03-12 14:22:40 +01:00
|
|
|
style="@style/TextAppearance.Medium.Body2"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:singleLine="true"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:text="@string/manga_info_genres_label"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:textIsSelectable="false"
|
2016-02-14 14:00:44 +01:00
|
|
|
/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_genres"
|
2016-03-12 14:22:40 +01:00
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:ellipsize="end"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:singleLine="false"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:textIsSelectable="false"
|
2016-02-14 14:00:44 +01:00
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
</android.support.v4.widget.NestedScrollView>
|
2016-01-03 13:48:14 +01:00
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2016-02-14 14:00:44 +01:00
|
|
|
</RelativeLayout>
|
2015-12-05 02:05:42 +01:00
|
|
|
|
2016-02-14 14:00:44 +01:00
|
|
|
<android.support.v4.widget.NestedScrollView
|
|
|
|
android:id="@+id/bottom_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_margin="@dimen/activity_vertical_margin"
|
|
|
|
android:layout_weight="0.6">
|
2015-12-05 02:05:42 +01:00
|
|
|
|
2016-01-03 13:48:14 +01:00
|
|
|
<LinearLayout
|
2015-12-05 02:05:42 +01:00
|
|
|
android:layout_width="match_parent"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2016-01-03 01:20:31 +01:00
|
|
|
|
|
|
|
<TextView
|
2016-01-03 13:48:14 +01:00
|
|
|
android:id="@+id/manga_summary_label"
|
2016-03-12 14:22:40 +01:00
|
|
|
style="@style/TextAppearance.Medium.Body2"
|
2016-01-03 01:20:31 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:text="@string/description"
|
|
|
|
android:textIsSelectable="false"/>
|
2016-01-03 13:48:14 +01:00
|
|
|
|
2016-01-28 19:54:04 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_summary"
|
2016-03-12 14:22:40 +01:00
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
2016-01-28 19:54:04 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:ellipsize="end"
|
2016-02-14 14:00:44 +01:00
|
|
|
android:singleLine="false"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:textIsSelectable="false"
|
2016-02-14 14:00:44 +01:00
|
|
|
/>
|
2016-01-03 13:48:14 +01:00
|
|
|
</LinearLayout>
|
2015-12-05 02:05:42 +01:00
|
|
|
|
2016-02-14 14:00:44 +01:00
|
|
|
</android.support.v4.widget.NestedScrollView>
|
2016-01-28 19:54:04 +01:00
|
|
|
|
2016-02-13 12:08:15 +01:00
|
|
|
|
2016-02-14 14:00:44 +01:00
|
|
|
</LinearLayout>
|
2015-12-05 02:05:42 +01:00
|
|
|
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
2015-10-17 13:51:54 +02:00
|
|
|
|
2016-02-13 12:08:15 +01:00
|
|
|
<android.support.design.widget.FloatingActionButton
|
2016-02-14 14:00:44 +01:00
|
|
|
android:id="@+id/fab_favorite"
|
2016-03-12 14:22:40 +01:00
|
|
|
style="@style/Theme.Widget.FAB"
|
|
|
|
android:layout_gravity=""
|
2016-02-14 14:00:44 +01:00
|
|
|
app:layout_anchor="@id/top_view"
|
2016-03-12 14:22:40 +01:00
|
|
|
app:layout_anchorGravity="bottom|right|end"
|
|
|
|
app:layout_behavior=""
|
|
|
|
app:srcCompat="@drawable/ic_bookmark_border_white_24dp"/>
|
2016-02-14 14:00:44 +01:00
|
|
|
|
2016-02-13 12:08:15 +01:00
|
|
|
</android.support.design.widget.CoordinatorLayout>
|