Show mangas from catalogue

This commit is contained in:
inorichi
2015-10-12 01:01:20 +02:00
parent 381bedf68d
commit 2aaaad7a24
11 changed files with 137 additions and 16 deletions

View File

@@ -1,7 +1,9 @@
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent" android:fitsSystemWindows="true"
tools:context="eu.kanade.mangafeed.ui.activity.CatalogueListActivity">
@@ -9,4 +11,11 @@
android:id="@+id/toolbar"
layout="@layout/toolbar"/>
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/catalogue_manga_list"
tools:listitem="@layout/item_catalogue"
/>
</LinearLayout>

View File

@@ -0,0 +1,14 @@
<?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:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="40dp"
tools:text="New Text"
android:gravity="center_vertical"
android:id="@+id/catalogue_title" />
</LinearLayout>