<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/background_dark"
tools:context=".MainClusterActivity"
android:windowIsFloating="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<androidx.viewpager.widget.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
/>
<LinearLayout
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/btn_nav"
android:layout_width="48dp"
android:layout_height="48dp"
android:background="@drawable/btn_nav"
android:layout_margin="10dp"
android:focusableInTouchMode="true" />
<Button
android:id="@+id/btn_phone"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_margin="10dp"
android:background="@drawable/btn_phone"
android:focusableInTouchMode="true" />
<Button
android:id="@+id/btn_music"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_margin="10dp"
android:background="@drawable/btn_music"
android:focusableInTouchMode="true" />
<Button
android:id="@+id/btn_car_info"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_margin="10dp"
android:background="@drawable/btn_car_info"
android:focusableInTouchMode="true" />
</LinearLayout>
</LinearLayout>
<TextView
android:id="@+id/text_overlay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="@android:color/background_light"
android:textSize="30sp"
/>
</RelativeLayout>