31 lines
1.3 KiB
XML
31 lines
1.3 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:background="@color/theme_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<include
|
|
android:id="@+id/include_publish_title"
|
|
layout="@layout/layout_publish_title"/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_edit_publish"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@+id/include_publish_title"
|
|
android:layout_centerHorizontal="true"/>
|
|
<include layout="@layout/preview_view_layout"/>
|
|
<View
|
|
android:id="@+id/view_flag"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_alignParentBottom="true"/>
|
|
<ImageView
|
|
android:id="@+id/im_add_image"
|
|
android:background="@drawable/community_publish_icon_add"
|
|
android:layout_width="@dimen/publish_img"
|
|
android:layout_height="@dimen/publish_img"
|
|
android:layout_marginRight="@dimen/publish_img_margin"
|
|
android:layout_marginBottom="@dimen/publish_img_margin"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentBottom="true"/>
|
|
</RelativeLayout>
|