activity_main.xml raw

   1  <?xml version="1.0" encoding="utf-8"?>
   2  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   3      xmlns:app="http://schemas.android.com/apk/res-auto"
   4      android:layout_width="match_parent"
   5      android:layout_height="match_parent">
   6  
   7      <com.google.android.material.appbar.AppBarLayout
   8          android:id="@+id/top_app_bar"
   9          android:layout_width="match_parent"
  10          android:layout_height="wrap_content"
  11          android:background="@android:color/transparent">
  12  
  13          <com.google.android.material.appbar.MaterialToolbar
  14              android:layout_width="match_parent"
  15              android:layout_height="wrap_content"
  16              android:minHeight="?attr/actionBarSize"
  17              app:title="@string/app_name"
  18              app:titleCentered="true" />
  19      </com.google.android.material.appbar.AppBarLayout>
  20  
  21      <FrameLayout
  22          android:id="@+id/settings"
  23          android:layout_width="match_parent"
  24          android:layout_height="match_parent"
  25          android:layout_below="@id/top_app_bar" />
  26  </RelativeLayout>
  27