2015-09-26 08:25:18 -04:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context="eu.kanade.mangafeed.ui.activity.MangaDetailActivity">
|
|
|
|
|
2015-09-28 06:42:16 -04:00
|
|
|
<include
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
layout="@layout/toolbar"/>
|
|
|
|
|
2015-09-26 08:25:18 -04:00
|
|
|
<ListView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/manga_chapters_list"
|
|
|
|
tools:listitem="@layout/item_chapter"
|
|
|
|
android:height="?android:listPreferredItemHeight"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|