2015-11-24 11:23:31 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
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"
|
2015-11-26 18:31:26 -05:00
|
|
|
tools:context=".activities.MainActivity">
|
2015-11-24 11:23:31 -05:00
|
|
|
|
2017-12-02 19:10:35 +01:00
|
|
|
<fragment
|
|
|
|
android:id="@+id/fragment_main"
|
2015-11-24 11:23:31 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-12-02 19:10:35 +01:00
|
|
|
android:name="com.wismna.geoffroy.donext.fragments.MainFragment"
|
|
|
|
/>
|
2015-11-24 11:23:31 -05:00
|
|
|
|
2017-03-22 17:38:59 -04:00
|
|
|
<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"
|
2017-03-23 17:55:38 -04:00
|
|
|
android:src="@drawable/ic_add" />
|
2017-03-22 17:38:59 -04:00
|
|
|
|
2015-11-24 11:23:31 -05:00
|
|
|
</android.support.design.widget.CoordinatorLayout>
|