33 lines
1.0 KiB
XML
33 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
<EditText
|
|
android:id="@+id/et_menu_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="Nama Menu" />
|
|
|
|
<EditText
|
|
android:id="@+id/et_menu_price"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="Harga"
|
|
android:inputType="number" />
|
|
|
|
<EditText
|
|
android:id="@+id/et_menu_stock"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="Stok"
|
|
android:inputType="number" />
|
|
|
|
<Spinner
|
|
android:id="@+id/spinner_menu_category"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout> |