19 lines
843 B
XML
19 lines
843 B
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: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"/>
|
|
<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"/>
|
|
</RelativeLayout>
|