mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
65c07450da
- Manga order by title in library - New chapter list item design - Chapter item popup - Color normalisation to Material Design pallets - Theme and style fixes
47 lines
No EOL
1.8 KiB
XML
47 lines
No EOL
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout 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"
|
|
android:orientation="vertical">
|
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
android:id="@+id/swipe_refresh"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_above="@+id/toolbar_bottom"
|
|
android:orientation="vertical">
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/chapter_list"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
tools:listitem="@layout/item_chapter">
|
|
|
|
</android.support.v7.widget.RecyclerView>
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar_bottom"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:layout_alignParentBottom="true"
|
|
android:background="@color/colorPrimary"
|
|
android:elevation="4dp"
|
|
android:gravity="top|start"
|
|
android:theme="@style/ThemeOverlay.AppTheme.Dark"
|
|
app:popupTheme="@style/AppTheme.Popup">
|
|
|
|
<android.support.v7.widget.ActionMenuView
|
|
android:id="@+id/bottom_menu"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="?attr/actionBarSize"/>
|
|
</android.support.v7.widget.Toolbar>
|
|
|
|
|
|
</RelativeLayout> |