activity_manga_detail.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:app="http://schemas.android.com/apk/res-auto"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:orientation="vertical"
  7. tools:context="eu.kanade.mangafeed.ui.manga.MangaActivity">
  8. <android.support.design.widget.AppBarLayout
  9. android:id="@+id/appbar"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:theme="@style/ThemeOverlay.AppTheme.Dark">
  13. <include
  14. android:id="@+id/toolbar"
  15. layout="@layout/toolbar" />
  16. <android.support.design.widget.TabLayout
  17. android:id="@+id/tabs"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:theme="@style/ThemeOverlay.AppTheme.Dark"
  21. app:tabGravity="fill"
  22. android:background="@color/colorPrimary"
  23. app:tabIndicatorColor="@color/white" />
  24. </android.support.design.widget.AppBarLayout>
  25. <android.support.v4.view.ViewPager
  26. android:id="@+id/view_pager"
  27. android:layout_width="match_parent"
  28. android:layout_height="0px"
  29. android:layout_weight="1"
  30. android:background="@color/white" />
  31. </LinearLayout>