123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- <?xml version="1.0" encoding="utf-8"?>
- <android.support.design.widget.CoordinatorLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- 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">
- <android.support.v4.widget.SwipeRefreshLayout
- android:id="@id/swipe_refresh"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:id="@+id/global_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <RelativeLayout
- android:id="@+id/top_view"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="0.4">
- <ImageView
- android:id="@+id/backdrop"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:alpha="0.2"
- android:contentDescription="@string/description_backdrop"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal">
- <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"/>
- <RelativeLayout
- 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"
- style="@style/manga_detail_label"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/manga_info_author_label"
- />
- <TextView
- android:id="@+id/manga_author"
- style="@style/manga_detail_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- />
- </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"
- style="@style/manga_detail_label"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/manga_info_artist_label"
- />
- <TextView
- android:id="@+id/manga_artist"
- style="@style/manga_detail_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- />
- </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"
- style="@style/manga_detail_label"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/manga_info_chapters_label"
- />
- <TextView
- android:id="@+id/manga_chapters"
- style="@style/manga_detail_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- />
- </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"
- style="@style/manga_detail_label"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/manga_info_status_label"
- />
- <TextView
- android:id="@+id/manga_status"
- style="@style/manga_detail_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- />
- </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"
- style="@style/manga_detail_label"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/manga_info_source_label"
- />
- <TextView
- android:id="@+id/manga_source"
- style="@style/manga_detail_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- />
- </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"
- style="@style/manga_detail_label"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/manga_info_genres_label"
- />
- <TextView
- android:id="@+id/manga_genres"
- style="@style/manga_detail_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:singleLine="false"
- />
- </LinearLayout>
- </RelativeLayout>
- </android.support.v4.widget.NestedScrollView>
- </RelativeLayout>
- </LinearLayout>
- </RelativeLayout>
- <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">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <TextView
- android:id="@+id/manga_summary_label"
- style="@style/manga_detail_label"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/description"/>
- <TextView
- android:id="@+id/manga_summary"
- style="@style/manga_detail_text"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:singleLine="false"
- />
- </LinearLayout>
- </android.support.v4.widget.NestedScrollView>
- </LinearLayout>
- </android.support.v4.widget.SwipeRefreshLayout>
- <android.support.design.widget.FloatingActionButton
- android:id="@+id/fab_favorite"
- android:layout_width="@dimen/fab_size"
- android:layout_height="@dimen/fab_size"
- android:layout_margin="@dimen/fab_margin"
- android:src="@drawable/ic_bookmark_border_white_24dp"
- app:backgroundTint="@color/colorPrimary"
- app:layout_anchor="@id/top_view"
- app:layout_anchorGravity="bottom|right|end"/>
- </android.support.design.widget.CoordinatorLayout>
|