activty_delete.xml
1.63 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
<?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/cl_home_edit_text"
>
<RelativeLayout
android:id="@+id/headview"
android:layout_width="fill_parent"
android:layout_height="45dp"
android:background="@color/cl_home_edit_text"
android:gravity="center_vertical"
>
<Button
android:textSize="14sp"
android:textColor="#fff"
android:id="@+id/gallery_back"
android:text="返回"
android:layout_width="50dp"
android:background="@color/cl_home_button"
android:layout_height="match_parent"
/>
<Button
android:textSize="14sp"
android:textColor="#fff"
android:id="@+id/gallery_del"
android:background="@color/cl_home_button"
android:layout_alignParentRight="true"
android:layout_width="50dp"
android:text="删除"
android:layout_height="match_parent"
/>
</RelativeLayout>
<android.support.v4.view.ViewPager
android:id="@+id/gallery01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/headview"
android:layout_centerHorizontal="true"
android:background="@color/cl_order_text_one"
android:unselectedAlpha="1"
android:layout_alignParentBottom="true">
</android.support.v4.view.ViewPager>
</RelativeLayout>