27 lines
999 B
XML
27 lines
999 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context="com.de.aldo_apps.aldo.mariokartcircuitselector.GameSelection"
|
|
>
|
|
|
|
<android.support.v4.view.ViewPager
|
|
android:id="@+id/vp_horizontal_ntb"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_above="@+id/ntb_vertical"/>
|
|
|
|
<devlight.io.library.ntb.NavigationTabBar
|
|
app:ntb_title_mode="all"
|
|
app:ntb_titled="true"
|
|
app:ntb_title_size="14sp"
|
|
android:id="@+id/ntb_vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:layout_alignParentBottom="true"
|
|
app:ntb_preview_colors="@array/vertical_ntb"/>
|
|
|
|
</RelativeLayout>
|