diff options
| author | magh <magh@maghmogh.com> | 2024-11-22 15:54:21 +0900 |
|---|---|---|
| committer | magh <magh@maghmogh.com> | 2024-11-22 15:54:21 +0900 |
| commit | 241c94f7c9ea6e12b699c6b7ae181905f1d5d869 (patch) | |
| tree | b24d533e36b48ccd1d2ddd10edc637cb9194f16e /app/build/intermediates/packaged_res/debug/layout/activity_main.xml | |
Diffstat (limited to 'app/build/intermediates/packaged_res/debug/layout/activity_main.xml')
| -rw-r--r-- | app/build/intermediates/packaged_res/debug/layout/activity_main.xml | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/app/build/intermediates/packaged_res/debug/layout/activity_main.xml b/app/build/intermediates/packaged_res/debug/layout/activity_main.xml new file mode 100644 index 0000000..1001c85 --- /dev/null +++ b/app/build/intermediates/packaged_res/debug/layout/activity_main.xml @@ -0,0 +1,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> |
