admin
2020-07-16 b5e008514ffa376154fee55423779a4f21c9f1b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?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="match_parent"
    android:orientation="vertical">
 
    <FrameLayout
        android:id="@+id/fl_main_fragment_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/trends_goods_lin" />
 
    <View
        android:id="@+id/trends_goods_lin"
        android:layout_width="match_parent"
        android:layout_height="1px"
        android:layout_above="@+id/fl_bottom"
        android:background="@color/trends_goods_bg" />
 
    <include layout="@layout/navigation_bottom_bar" />
 
    <ImageView
        android:id="@+id/actionButton_img"
        android:layout_width="120dp"
        android:layout_height="120dp"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true"
        android:background="@drawable/ic_suspension"
        android:visibility="invisible" />
 
    <com.fanliunion.android.app.util.DragFloatActionButton
        android:id="@+id/actionButton"
        android:layout_width="68dp"
        android:layout_height="68dp"
        android:layout_alignParentTop="true"
        android:layout_alignParentRight="true"
        android:layout_marginTop="110dp"
        android:background="@drawable/ic_shopping"
        android:visibility="invisible" />
 
 
</RelativeLayout>