Last active
March 31, 2019 12:44
-
-
Save haxzie-xx/fe08c8e9ef27ff8950038283abaf9b75 to your computer and use it in GitHub Desktop.
mediun-full-screen-dialogs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <android.support.design.widget.CoordinatorLayout | |
| xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| android:background="@color/colorWhite"> | |
| <android.support.design.widget.AppBarLayout | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" > | |
| <android.support.v7.widget.Toolbar | |
| android:id="@+id/toolbar" | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content"> | |
| </android.support.v7.widget.Toolbar> | |
| </android.support.design.widget.AppBarLayout> | |
| <FrameLayout | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| app:layout_behavior="@string/appbar_scrolling_view_behavior"> | |
| <!-- YOUR CUSTOM VIEWS HERE --> | |
| </FrameLayout> | |
| </android.support.design.widget.CoordinatorLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment