Last active
August 15, 2016 05:18
-
-
Save li2/f4035ac857abf5318ce30cae1b5ac247 to your computer and use it in GitHub Desktop.
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"?> | |
<RelativeLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:fitsSystemWindows="true"> | |
<include | |
layout="@layout/toolbar_actionbar" | |
android:layout_alignParentTop="true" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content"/> | |
<FrameLayout | |
android:id="@+id/contentFragmentContainer" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:layout_marginTop="@dimen/headerBarHeight" | |
android:layout_above="@+id/operationToolbarViewStub" | |
app:layout_behavior="@string/appbar_scrolling_view_behavior"/> | |
<ViewStub | |
android:id="@id/operationToolbarViewStub" | |
android:inflatedId="@id/operationToolbarViewStub" | |
android:layout_width="match_parent" | |
android:layout_height="@dimen/footerBarHeight" | |
android:layout_alignParentBottom="true" | |
android:layout_centerHorizontal="true"/> | |
</RelativeLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment