habitica-android/Habitica/res/layout/activity_gem_purchase.xml

45 lines
2 KiB
XML
Raw Normal View History

2016-10-06 10:29:57 +00:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2019-11-19 17:07:45 +00:00
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=".ui.activities.MainActivity"
android:id="@+id/overlayFrameLayout">
2018-11-06 15:11:02 +00:00
<androidx.drawerlayout.widget.DrawerLayout
2019-11-19 17:07:45 +00:00
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
2016-10-06 10:29:57 +00:00
2018-11-06 15:11:02 +00:00
<androidx.coordinatorlayout.widget.CoordinatorLayout
2019-08-24 10:33:14 +00:00
android:layout_width="match_parent"
2019-11-19 17:07:45 +00:00
android:layout_height="match_parent"
android:elevation="0dp"
tools:context=".ui.activities.MainActivity">
2016-10-06 10:29:57 +00:00
2019-09-26 12:35:02 +00:00
<FrameLayout
2019-11-19 17:07:45 +00:00
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
2016-10-06 10:29:57 +00:00
2018-11-06 15:11:02 +00:00
<com.google.android.material.appbar.AppBarLayout
2019-11-19 17:07:45 +00:00
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="false">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
2016-10-06 10:29:57 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-11-19 17:07:45 +00:00
android:minHeight="?attr/actionBarSize"
android:background="@color/white"
app:layout_collapseMode="pin"
app:popupTheme="@style/Theme.AppCompat.Light" />
2018-11-06 15:11:02 +00:00
</com.google.android.material.appbar.AppBarLayout>
2016-10-06 10:29:57 +00:00
2018-11-06 15:11:02 +00:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</androidx.drawerlayout.widget.DrawerLayout>
2016-10-06 10:29:57 +00:00
</FrameLayout>