-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhitlist_view_pager.xml
59 lines (52 loc) · 2.02 KB
/
hitlist_view_pager.xml
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
<?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="#ffcc00"
>
<LinearLayout
android:id="@+id/linearLayout"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/linearLayoutButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="add new person"
android:layout_margin="4dp"
/>
<Button
android:id="@+id/removeFragmentButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text = "remove this person"
android:layout_weight="1"
android:layout_margin="4dp"
/>
</LinearLayout>
<Button
android:id="@+id/markButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="MARK THIS PERSON DEAD"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_above="@+id/linearLayout"/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/markButton">
<android.support.v4.view.PagerTabStrip
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/pager_header"
android:padding="4dp"
android:layout_gravity="top"
>
</android.support.v4.view.PagerTabStrip>
</android.support.v4.view.ViewPager>
</RelativeLayout>