nim_picker_album_activity.xml
2.61 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?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:background="@color/white">
<RelativeLayout
android:id="@+id/picker_bottombar"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:background="#e6e6e6"
android:visibility="visible">
<TextView
android:id="@+id/picker_bottombar_preview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:enabled="false"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:background="@drawable/nim_picker_preview_btn_selector"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:paddingLeft="8dip"
android:paddingRight="8dip"
android:gravity="center"
android:text="@string/picker_image_preview"
android:textColor="@color/color_picker_preview_selector"
android:textSize="14.0sp"
android:visibility="visible" />
<TextView
android:id="@+id/picker_bottombar_select"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:background="@drawable/nim_message_button_bottom_send_selector"
android:enabled="false"
android:gravity="center"
android:paddingLeft="8dip"
android:paddingRight="8dip"
android:text="@string/picker_image_send"
android:textColor="@color/white"
android:textSize="14.0sp"
android:visibility="visible" />
</RelativeLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/picker_bottombar">
<FrameLayout
android:id="@+id/picker_album_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="visible" />
<FrameLayout
android:id="@+id/picker_photos_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone" />
</FrameLayout>
</RelativeLayout>