16 lines
568 B
XML
16 lines
568 B
XML
|
|
<FrameLayout 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"
|
||
|
|
android:background="@color/background"
|
||
|
|
tools:context="ui.fragments.manga_list.FragmentManga">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="Manga"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textSize="30sp"
|
||
|
|
android:textColor="@color/textPrimary"/>
|
||
|
|
|
||
|
|
</FrameLayout>
|