19 lines
790 B
XML
19 lines
790 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:background="@color/bg_2E3B55"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<com.ubt.jimu.widgets.TitleDiyView
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_build"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="@dimen/diy_edit_list_left"
|
|
android:layout_marginTop="@dimen/diy_name_top"
|
|
style="@style/scrollbar_recyclerView_none"/>
|
|
</LinearLayout>
|