Administrator
2021-11-06 c637891132d876b13edd8bc1e9ce4d63312fe091
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <com.google.android.material.floatingactionbutton.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:contentDescription="发布"
        android:layout_marginRight="@dimen/activity_horizontal_margin"
        android:layout_marginBottom="50dp"
        app:rippleColor="@color/white_2"
        android:outlineSpotShadowColor="@color/white"
        android:outlineAmbientShadowColor="@color/white"
        android:src="@drawable/ic_baseline_add_24"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintRight_toRightOf="parent"/>
    <include
        android:id="@+id/include_refresh_recycler"
        layout="@layout/refresh_recycler" />
</androidx.constraintlayout.widget.ConstraintLayout>