-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrash.txt
More file actions
55 lines (50 loc) · 1.71 KB
/
trash.txt
File metadata and controls
55 lines (50 loc) · 1.71 KB
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
<RelativeLayout
android:id="@+id/searchOption"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/cvSearch"
android:background="@color/white"
android:elevation="0dp"
android:layout_alignParentStart="true"
android:layout_alignParentEnd="true">
<ImageView
android:id="@+id/searchPost"
android:layout_width="@dimen/bottom_menu_size"
android:layout_height="@dimen/bottom_menu_size"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:layout_marginBottom="4dp"
android:layout_toStartOf="@+id/add_icon"
android:src="@drawable/ic_post" />
<TextView
android:id="@+id/activeSearchPost"
android:layout_width="match_parent"
android:layout_height="2dp"
android:layout_below="@id/searchPost"
android:layout_alignParentStart="true"
android:layout_toStartOf="@+id/add_icon"
android:background="@drawable/bg_ic_active" />
<ImageView
android:id="@+id/add_icon"
android:layout_width="@dimen/bottom_menu_size"
android:layout_height="@dimen/bottom_menu_size"
android:layout_centerInParent="true" />
<ImageView
android:id="@+id/searchUser"
android:layout_width="@dimen/bottom_menu_size"
android:layout_height="@dimen/bottom_menu_size"
android:layout_centerVertical="true"
android:layout_alignParentEnd="true"
android:layout_toEndOf="@+id/add_icon"
android:layout_marginBottom="4dp"
android:src="@drawable/user"
/>
<TextView
android:id="@+id/activeSearchUser"
android:layout_width="match_parent"
android:layout_height="2dp"
android:layout_alignParentEnd="true"
android:layout_toEndOf="@+id/add_icon"
android:layout_below="@id/searchPost"
android:background="@drawable/bg_ic_active" />
</RelativeLayout>