20 lines
863 B
XML
20 lines
863 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rlv_community_home"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="@dimen/home_comm_margin_top"/>
|
|
<ImageView
|
|
android:id="@+id/im_inspire_publish"
|
|
android:layout_width="@dimen/publish_btn"
|
|
android:layout_height="@dimen/publish_btn"
|
|
android:layout_marginRight="@dimen/dp29w"
|
|
android:layout_marginBottom="@dimen/dp29w"
|
|
android:src="@drawable/img_publish"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentBottom="true"/>
|
|
</RelativeLayout>
|