2015-09-29 14:40:36 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-09-26 14:25:18 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-09-29 14:40:36 +02:00
|
|
|
tools:context="eu.kanade.mangafeed.ui.activity.MangaDetailActivity"
|
|
|
|
android:orientation="vertical">
|
2015-09-26 14:25:18 +02:00
|
|
|
|
2015-09-28 12:42:16 +02:00
|
|
|
<include
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
layout="@layout/toolbar"/>
|
|
|
|
|
2015-09-26 14:25:18 +02:00
|
|
|
<ListView
|
2015-09-29 14:40:36 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-09-26 14:25:18 +02:00
|
|
|
android:id="@+id/manga_chapters_list"
|
|
|
|
tools:listitem="@layout/item_chapter"
|
|
|
|
android:height="?android:listPreferredItemHeight"/>
|
|
|
|
|
2015-09-29 14:40:36 +02:00
|
|
|
</LinearLayout>
|