popwindow_showcream.xml
1.94 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
<?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:gravity="center_horizontal" >
<LinearLayout
android:id="@+id/pop_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@color/changehead_back_colo"
android:gravity="center_horizontal"
android:orientation="vertical" >
<TextView
android:id="@+id/btn_take_photo"
android:layout_width="match_parent"
android:layout_height="@dimen/changehead_text_hight"
android:background="@color/wite"
android:gravity="center"
android:text="@string/changehead_camera"
android:textColor="@color/changehead_text_colo"
android:textSize="@dimen/changehead_text_size" />
<TextView
android:id="@+id/btn_pick_photo"
android:layout_width="match_parent"
android:layout_height="@dimen/changehead_text_hight"
android:layout_marginTop="2px"
android:background="@color/wite"
android:gravity="center"
android:text="@string/changehead_locat"
android:textColor="@color/changehead_text_colo"
android:textSize="@dimen/changehead_text_size" />
<TextView
android:id="@+id/btn_cancel"
android:layout_width="match_parent"
android:layout_height="@dimen/changehead_text_hight"
android:layout_marginTop="5dip"
android:background="@color/wite"
android:gravity="center"
android:text="@string/Cancel"
android:textColor="@color/changehead_text_colo"
android:textSize="@dimen/changehead_text_size" />
</LinearLayout>
</RelativeLayout>