Skip to content

Commit

Permalink
Fix sample layout
Browse files Browse the repository at this point in the history
Signed-off-by: Constantine <[email protected]>
  • Loading branch information
Semper-Viventem committed May 14, 2019
1 parent 00711a4 commit 875fc01
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions sample/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/backDrop"
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:id="@+id/backDrop"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimary"
Expand All @@ -13,7 +13,8 @@
android:id="@+id/backLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
android:orientation="vertical"
app:elevation="0dp">

<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
Expand All @@ -25,9 +26,10 @@
android:id="@+id/navigationView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="@dimen/small_gap"
android:paddingEnd="@dimen/small_gap"
android:background="@android:color/transparent"
android:paddingEnd="@dimen/small_gap"
android:paddingStart="@dimen/small_gap"
app:elevation="0dp"
app:itemBackground="@drawable/bg_menu_item"
app:itemTextColor="@color/white"
app:menu="@menu/main_menu"/>
Expand Down

0 comments on commit 875fc01

Please sign in to comment.