fragment_recruitment.xml 1.1 KB
<?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"
    android:orientation="vertical"
    tools:context=".fragment.RecruitmentFragment">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/rv_tab"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_marginTop="@dimen/dp_10" />


    <View
        android:id="@+id/line"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dp_1"
        android:layout_below="@+id/rv_tab"
        android:layout_marginTop="@dimen/dp_10"
        android:background="#EDEDED" />

    <android.support.v7.widget.RecyclerView
        android:id="@+id/rec_job"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/line" />
</RelativeLayout>