-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhitlist.xml
51 lines (45 loc) · 1.73 KB
/
hitlist.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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/hitlistParentLayout"
android:background="@drawable/background"
android:padding="16dp">
<TextView
android:id="@+id/hitlistTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hitlist"
android:textAllCaps="true"
android:fontFamily="serif"
android:textSize="28sp"
android:textStyle="bold"
android:layout_alignParentTop="true"
android:textColor="@android:color/white"
android:layout_centerHorizontal="true"
/>
<RelativeLayout
android:id="@+id/addRemoveLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
>
<ImageButton
android:id="@+id/addImageButton"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_alignParentLeft="true"
android:scaleType="fitXY"
android:background="@drawable/add_button" />
</RelativeLayout>
<ListView
android:layout_marginTop="16dp"
android:layout_marginBottom="16dp"
android:id="@+id/hitlistListView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/hitlistTextView"
android:layout_above="@id/addRemoveLayout"
></ListView>
</RelativeLayout>