27 lines
1.2 KiB
XML
27 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:background="@color/theme_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<com.ubt.jimu.widgets.NavigationBarView
|
|
android:id="@+id/nbv_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:nbv_mode="left_right"
|
|
app:nbv_title="@string/drafts"/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rlv_drafts_list"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/home_margin_left"
|
|
android:layout_marginRight="@dimen/home_margin_left"
|
|
android:layout_below="@+id/nbv_bar"/>
|
|
<ViewStub
|
|
android:id="@+id/vs_drafts_null"
|
|
android:layout="@layout/viewstub_drafts_content_null"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"/>
|
|
</RelativeLayout>
|