Last active
August 22, 2016 14:59
-
-
Save janishar/a230502a14468823e97d261fd4a562c8 to your computer and use it in GitHub Desktop.
This file contains 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.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:id="@+id/drawerLayout" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent"> | |
<LinearLayout | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:orientation="vertical"> | |
<include | |
android:id="@+id/toolbar" | |
layout="@layout/toolbar_home"/> | |
<com.mindorks.placeholderview.PlaceHolderView | |
android:id="@+id/galleryView" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:scrollbars="vertical"/> | |
</LinearLayout> | |
<FrameLayout | |
android:layout_width="250dp" | |
android:layout_height="match_parent" | |
android:layout_gravity="left" | |
android:background="@android:color/white"> | |
<com.mindorks.placeholderview.PlaceHolderView | |
android:id="@+id/drawerView" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:scrollbars="vertical"/> | |
</FrameLayout> | |
</android.support.v4.widget.DrawerLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment