<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
tools:context="cn.flightfeather.thirdappmodule.activity.TaskAdjustActivity">
|
|
<include
|
android:id="@+id/actionbar"
|
layout="@layout/layout_actionbar"
|
/>
|
|
<android.support.v7.widget.RecyclerView
|
android:id="@+id/rv_subtask"
|
android:layout_below="@+id/actionbar"
|
android:layout_above="@+id/ll_bottom_bar"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"/>
|
|
<LinearLayout
|
android:id="@+id/ll_bottom_bar"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_alignParentBottom="true"
|
android:background="@color/colorPrimary"
|
>
|
|
<TextView
|
android:id="@+id/tv_daytask"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:padding="@dimen/fab_margin"
|
android:clickable="true"
|
android:foreground="?android:attr/selectableItemBackground"
|
android:text="@string/day_task"
|
android:gravity="center"
|
android:textColor="@color/white"
|
/>
|
|
<TextView
|
android:id="@+id/tv_subtask"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:padding="@dimen/fab_margin"
|
android:clickable="true"
|
android:foreground="?android:attr/selectableItemBackground"
|
android:text="@string/subtask"
|
android:gravity="center"
|
android:textColor="@color/white"
|
/>
|
|
</LinearLayout>
|
</RelativeLayout>
|