|
|
|
@ -3,9 +3,8 @@
|
|
|
|
**
|
|
|
|
**
|
|
|
|
** See the file "LICENSE" for the full license governing this code.
|
|
|
|
** See the file "LICENSE" for the full license governing this code.
|
|
|
|
-->
|
|
|
|
-->
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:id="@+id/taskListParent"
|
|
|
|
|
|
|
|
android:background="?attr/asContentBackground"
|
|
|
|
android:background="?attr/asContentBackground"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
@ -14,19 +13,22 @@
|
|
|
|
android:focusableInTouchMode="true"
|
|
|
|
android:focusableInTouchMode="true"
|
|
|
|
android:orientation="vertical">
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Body goes here -->
|
|
|
|
<RelativeLayout
|
|
|
|
|
|
|
|
android:id="@+id/task_list_body"
|
|
|
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<include layout="@layout/task_list_swipe_layout_empty" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/fab"
|
|
|
|
android:id="@+id/fab"
|
|
|
|
android:src="?attr/fab_icon"
|
|
|
|
android:src="?attr/fab_icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_gravity="end|bottom"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
|
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
|
|
|
|
app:borderWidth="0dp"/>
|
|
|
|
app:borderWidth="0dp"/>
|
|
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|
|
|
|
|