2017-02-28 17:24:36 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<android.support.design.widget.CoordinatorLayout 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/main_content"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
tools:context=".activities.MainActivity">
|
|
|
|
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
|
|
android:id="@+id/appbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="@dimen/appbar_padding_top"
|
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
2017-03-17 13:44:54 -04:00
|
|
|
<include layout="@layout/toolbar" android:id="@+id/toolbar" />
|
2017-02-28 17:24:36 -05:00
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/fab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="end|bottom"
|
|
|
|
android:layout_margin="@dimen/fab_margin"
|
|
|
|
android:onClick="onNewTaskClick"
|
|
|
|
android:src="@drawable/ic_add_white_24dp" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2017-03-16 18:02:47 -04:00
|
|
|
android:layout_marginTop="?attr/actionBarSize"
|
2017-02-28 17:24:36 -05:00
|
|
|
android:orientation="horizontal">
|
|
|
|
<android.widget.ListView
|
|
|
|
android:id="@+id/tabs"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2017-03-03 17:35:24 -05:00
|
|
|
android:layout_weight="0.2"
|
|
|
|
android:listSelector="@drawable/tasklist_select"/>
|
2017-02-28 17:24:36 -05:00
|
|
|
<com.wismna.geoffroy.donext.widgets.NonSwipeableViewPager
|
|
|
|
android:id="@+id/container"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="0.8"
|
2017-03-03 17:35:24 -05:00
|
|
|
android:background="@android:color/background_light"
|
2017-02-28 17:24:36 -05:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
|
|
</LinearLayout>
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|