blob: 1001c8581f85e7e94edcad0bef22ce04732201d8 (
plain)
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
|
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF">
<LinearLayout
android:id="@+id/menu_container"
android:layout_width="300dp"
android:layout_height="500dp"
android:layout_gravity="center"
android:orientation="vertical"
android:background="#80333333">
<!-- Header -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="#801E1E1E"
android:padding="8dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Sys"
android:textColor="#00BFFF"/>
<EditText
android:id="@+id/search_bar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@null"
android:textColor="#FFFFFF"
android:textColorHint="#80FFFFFF"
android:hint="Search..."
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:padding="0dp"
android:textSize="14sp"
android:singleLine="true"/>
<TextView
android:id="@+id/item_count"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#00BFFF"/>
</LinearLayout>
<!-- Menu List -->
<ListView
android:id="@+id/menu_list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#80333333"
android:divider="#80444444"
android:dividerHeight="1dp"
android:choiceMode="singleChoice"/>
</LinearLayout>
</FrameLayout>
|