mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-14 23:15:06 +01:00
20 lines
669 B
XML
20 lines
669 B
XML
<LinearLayout 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"
|
|
android:orientation="vertical">
|
|
|
|
<include
|
|
android:id="@+id/toolbar"
|
|
layout="@layout/toolbar"/>
|
|
|
|
<ListView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/manga_chapters_list"
|
|
tools:listitem="@layout/item_chapter"
|
|
android:height="?android:listPreferredItemHeight"/>
|
|
|
|
</LinearLayout>
|