19 lines
821 B
XML
19 lines
821 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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_right"/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_album_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="@dimen/dp10"
|
|
android:layout_marginTop="@dimen/dp10"
|
|
android:layout_marginRight="@dimen/dp5"/>
|
|
</LinearLayout>
|