2015-11-27 23:49:50 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-01-07 17:20:56 -05:00
|
|
|
<android.support.percent.PercentRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-11-27 23:49:50 -05:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2015-11-29 18:09:55 -05:00
|
|
|
android:layout_height="match_parent" >
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/total_task_cycles"
|
2016-01-05 17:11:16 -05:00
|
|
|
android:layout_width="100dp"
|
2015-11-29 18:09:55 -05:00
|
|
|
android:layout_height="wrap_content"
|
2016-01-05 17:11:16 -05:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true"/>
|
2015-11-29 18:09:55 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/total_task_count"
|
2016-01-05 17:11:16 -05:00
|
|
|
android:layout_width="100dp"
|
2015-11-29 18:09:55 -05:00
|
|
|
android:layout_height="wrap_content"
|
2016-01-05 17:11:16 -05:00
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentEnd="true" />
|
2015-11-29 18:09:55 -05:00
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/task_list_view"
|
|
|
|
android:name="com.wismna.geoffroy.donext.activities.TaskFragment"
|
|
|
|
android:layout_width="match_parent"
|
2016-01-07 17:20:56 -05:00
|
|
|
android:layout_height="match_parent"
|
2015-11-29 18:09:55 -05:00
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
android:layout_below="@id/total_task_cycles"
|
|
|
|
app:layoutManager="LinearLayoutManager"
|
2016-01-07 17:20:56 -05:00
|
|
|
app:layout_heightPercent="90%"
|
2015-11-29 18:09:55 -05:00
|
|
|
tools:context=".fragments.TasksFragment"
|
|
|
|
tools:listitem="@layout/fragment_task" />
|
2016-01-05 17:11:16 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/remaining_task_count"
|
|
|
|
android:layout_width="150dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_below="@id/task_list_view" />
|
2016-01-07 17:20:56 -05:00
|
|
|
</android.support.percent.PercentRelativeLayout>
|