28 lines
1.2 KiB
XML
28 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
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"/>
|
|
<include
|
|
android:id="@+id/include"
|
|
layout="@layout/layout_diy_bottom"/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/ry_part_all"
|
|
android:background="@drawable/diy_perspective_9_bg_nor"
|
|
android:paddingLeft="@dimen/diy_part_padding_left"
|
|
android:paddingRight="@dimen/diy_part_padding_left"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="@dimen/diy_part_all_left"
|
|
android:layout_marginTop="@dimen/diy_part_top"
|
|
android:layout_marginRight="@dimen/diy_part_all_left"
|
|
android:layout_marginBottom="@dimen/diy_part_top"
|
|
android:layout_above="@+id/include"
|
|
android:layout_below="@+id/title"
|
|
style="@style/scrollbar_recyclerView_none"/>
|
|
</RelativeLayout>
|