IOS
hefeixia
2021-02-18 49f3c1374873f73dbde2983ca0fcf1fb10bfedbf
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white"
    android:orientation="vertical">
 
    <cn.wildfire.chat.moment.thirdbar.StatusBarViewPlaceHolder
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/action_bar_bg" />
 
    <cn.wildfire.chat.moment.third.widgets.TitleBar xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@id/title_bar_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:mode="mode_both"
        app:right_text_color="@color/base_000000"
        app:text_right="发表" />
 
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="20dp"
        android:paddingRight="20dp">
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
 
            <EditText
                android:id="@+id/publish_input"
                android:layout_width="match_parent"
                android:layout_height="100dp"
                android:background="@color/transparent"
                android:gravity="left|top"
                android:hint="这一刻的想法..."
                android:minLines="4"
                android:paddingTop="16dp"
                android:paddingRight="16dp"
                android:paddingBottom="16dp"
                android:textColorHint="@color/text_gray"
                android:textSize="14sp" />
 
            <cn.wildfire.chat.moment.third.widgets.NineGridView
                android:id="@+id/preview_image_content"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />
 
 
            <View
                android:layout_width="match_parent"
                android:layout_height="1px"
                android:layout_marginTop="70dp"
                android:background="@color/base_DCDCDC" />
 
            <cn.wildfire.chat.kit.widget.OptionItemView
                android:id="@+id/mentionOptionItemView"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                app:title="提醒谁看" />
 
            <View
                android:layout_width="match_parent"
                android:layout_height="1px"
                android:layout_marginLeft="50dp"
                android:background="@color/base_DCDCDC" />
 
            <cn.wildfire.chat.kit.widget.OptionItemView
                android:id="@+id/visibleScopeOptionItemView"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                app:title="谁不可看" />
 
            <View
                android:layout_width="match_parent"
                android:layout_height="1px"
                android:background="@color/base_DCDCDC" />
        </LinearLayout>
 
    </ScrollView>
</LinearLayout>