mirror of
https://github.com/shaulascr/ecommerce_serang.git
synced 2025-12-16 16:01:02 +00:00
1084 lines
43 KiB
XML
1084 lines
43 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context=".ui.profile.mystore.RegisterStoreActivity">
|
|
|
|
<include
|
|
android:id="@+id/header"
|
|
layout="@layout/header" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/blue_500"
|
|
android:padding="16dp"
|
|
android:text="Buka Toko"
|
|
android:textColor="@color/white"
|
|
style="@style/headline_large" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/blue_500"
|
|
android:paddingHorizontal="16dp"
|
|
android:paddingBottom="16dp"
|
|
android:text="@string/buka_toko_desc"
|
|
android:textColor="@color/white" />
|
|
</LinearLayout>
|
|
|
|
<!-- Main content in ScrollView -->
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="*"
|
|
style="@style/body_small"
|
|
android:textColor="@color/red_required"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Wajib diisi"
|
|
android:layout_marginStart="4dp"
|
|
style="@style/body_small"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Nama Toko -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginVertical="24dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="1. Nama Toko"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="*"
|
|
style="@style/body_medium"
|
|
android:textColor="@color/red_required"
|
|
android:layout_gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<EditText
|
|
android:id="@+id/et_store_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_text_field"
|
|
android:hint="Isi nama toko Anda di sini"
|
|
android:padding="8dp"
|
|
style="@style/body_small"
|
|
android:layout_marginTop="10dp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Deskripsi Toko -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="24dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="2. Deskripsi Toko"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<EditText
|
|
android:id="@+id/et_store_description"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="70dp"
|
|
android:background="@drawable/bg_text_field"
|
|
android:hint="Isi deskripsi toko Anda di sini"
|
|
android:padding="8dp"
|
|
style="@style/body_small"
|
|
android:inputType="text|textMultiLine"
|
|
android:gravity="top"
|
|
android:layout_marginTop="10dp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Jenis UMKM -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="24dp">
|
|
|
|
<!-- Label Jenis UMKM -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="3. Jenis UMKM"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="*"
|
|
style="@style/body_medium"
|
|
android:textColor="@color/red_required"
|
|
android:layout_gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Spinner Dropdown dengan Chevron -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:background="@drawable/bg_text_field"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginTop="10dp">
|
|
|
|
<Spinner
|
|
android:id="@+id/spinner_store_type"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:padding="8dp"
|
|
style="@style/body_small"
|
|
android:background="@null"/>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/store_type_progress_bar"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:padding="4dp"
|
|
android:visibility="gone"/>
|
|
|
|
<!-- Chevron Down Icon -->
|
|
<ImageView
|
|
android:layout_width="16dp"
|
|
android:layout_height="16dp"
|
|
android:src="@drawable/ic_down"
|
|
android:layout_marginEnd="8dp"
|
|
android:contentDescription="Chevron Down" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Provinsi -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="24dp">
|
|
|
|
<!-- Label Provinsi -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="4. Provinsi"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="*"
|
|
style="@style/body_medium"
|
|
android:textColor="@color/red_required"
|
|
android:layout_gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Spinner Dropdown dengan Chevron -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:background="@drawable/bg_text_field"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginTop="10dp">
|
|
|
|
<Spinner
|
|
android:id="@+id/spinner_province"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:padding="8dp"
|
|
style="@style/body_small"
|
|
android:background="@null"/>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/province_progress_bar"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:padding="4dp"
|
|
android:visibility="gone"/>
|
|
|
|
<!-- Chevron Down Icon -->
|
|
<ImageView
|
|
android:layout_width="16dp"
|
|
android:layout_height="16dp"
|
|
android:src="@drawable/ic_down"
|
|
android:layout_marginEnd="8dp"
|
|
android:contentDescription="Chevron Down" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Kabupaten/Kota -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="24dp">
|
|
|
|
<!-- Label Kabupaten/Kota -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="5. Kabupaten/Kota"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="*"
|
|
style="@style/body_medium"
|
|
android:textColor="@color/red_required"
|
|
android:layout_gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Spinner Dropdown dengan Chevron -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:background="@drawable/bg_text_field"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginTop="10dp">
|
|
|
|
<Spinner
|
|
android:id="@+id/spinner_city"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:padding="8dp"
|
|
style="@style/body_small"
|
|
android:background="@null"/>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/city_progress_bar"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:padding="4dp"
|
|
android:visibility="gone"/>
|
|
|
|
<!-- Chevron Down Icon -->
|
|
<ImageView
|
|
android:layout_width="16dp"
|
|
android:layout_height="16dp"
|
|
android:src="@drawable/ic_down"
|
|
android:layout_marginEnd="8dp"
|
|
android:contentDescription="Chevron Down" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Kecamatan -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="6. Kecamatan"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="*"
|
|
style="@style/body_medium"
|
|
android:textColor="@color/red_required"
|
|
android:layout_gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:background="@drawable/bg_text_field"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginTop="10dp">
|
|
|
|
<Spinner
|
|
android:id="@+id/spinner_subdistrict"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:padding="8dp"
|
|
style="@style/body_small"
|
|
android:background="@null"/>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/subdistrict_progress_bar"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:padding="4dp"
|
|
android:visibility="gone"/>
|
|
|
|
<!-- Chevron Down Icon -->
|
|
<ImageView
|
|
android:layout_width="16dp"
|
|
android:layout_height="16dp"
|
|
android:src="@drawable/ic_down"
|
|
android:layout_marginEnd="8dp"
|
|
android:contentDescription="Chevron Down" />
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Jalan -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="24dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="7. Jalan"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="*"
|
|
style="@style/body_medium"
|
|
android:textColor="@color/red_required"
|
|
android:layout_gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<EditText
|
|
android:id="@+id/et_street"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_text_field"
|
|
android:hint="Isi jalan tempat toko Anda di sini"
|
|
android:padding="8dp"
|
|
style="@style/body_small"
|
|
android:layout_marginTop="10dp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Kode Pos -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="24dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="8. Kode Pos"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="*"
|
|
style="@style/body_medium"
|
|
android:textColor="@color/red_required"
|
|
android:layout_gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<EditText
|
|
android:id="@+id/et_postal_code"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_text_field"
|
|
android:hint="Isi kode pos tempat toko Anda di sini"
|
|
android:padding="8dp"
|
|
style="@style/body_small"
|
|
android:layout_marginTop="10dp"
|
|
android:inputType="number"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Detail Alamat Toko -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="24dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="9. Detail Alamat"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<EditText
|
|
android:id="@+id/et_address_detail"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="70dp"
|
|
android:background="@drawable/bg_text_field"
|
|
android:hint="Isi detail alamat toko Anda di sini"
|
|
android:padding="8dp"
|
|
style="@style/body_small"
|
|
android:inputType="text|textMultiLine"
|
|
android:gravity="top"
|
|
android:layout_marginTop="10dp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Bank -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="24dp"
|
|
android:visibility="gone">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="10. Bank"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="*"
|
|
style="@style/body_medium"
|
|
android:textColor="@color/red_required"
|
|
android:layout_gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<EditText
|
|
android:id="@+id/et_bank_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_text_field"
|
|
android:hint="Isi nama bank untuk toko Anda di sini"
|
|
android:padding="8dp"
|
|
style="@style/body_small"
|
|
android:layout_marginTop="10dp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Nama Bank-->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="24dp">
|
|
|
|
<!-- Label Jenis UMKM -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="10. Bank"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="*"
|
|
style="@style/body_medium"
|
|
android:textColor="@color/red_required"
|
|
android:layout_gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Spinner Dropdown dengan Chevron -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:background="@drawable/bg_text_field"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginTop="10dp">
|
|
|
|
<Spinner
|
|
android:id="@+id/spinner_bank_name"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:padding="8dp"
|
|
style="@style/body_small"
|
|
android:background="@null"/>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/bank_name_progress_bar"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:padding="4dp"
|
|
android:visibility="gone"/>
|
|
|
|
<!-- Chevron Down Icon -->
|
|
<ImageView
|
|
android:layout_width="16dp"
|
|
android:layout_height="16dp"
|
|
android:src="@drawable/ic_down"
|
|
android:layout_marginEnd="8dp"
|
|
android:contentDescription="Chevron Down" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Nomor Rekening -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="24dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="11. Nomor Rekening"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="*"
|
|
style="@style/body_medium"
|
|
android:textColor="@color/red_required"
|
|
android:layout_gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<EditText
|
|
android:id="@+id/et_bank_number"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_text_field"
|
|
android:hint="Isi nomor rekening bank Anda di sini"
|
|
android:padding="8dp"
|
|
style="@style/body_small"
|
|
android:layout_marginTop="10dp"
|
|
android:inputType="number"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Nama Pemilik Rekening -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="24dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="12. Nama Pemilik Rekening"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="*"
|
|
style="@style/body_medium"
|
|
android:textColor="@color/red_required"
|
|
android:layout_gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<EditText
|
|
android:id="@+id/et_account_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_text_field"
|
|
android:hint="Isi nama pemilik rekening"
|
|
android:padding="8dp"
|
|
style="@style/body_small"
|
|
android:layout_marginTop="10dp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Kurir -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="24dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="13. Pilih Kurir Pengiriman"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="*"
|
|
style="@style/body_medium"
|
|
android:textColor="@color/red_required"
|
|
android:layout_gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<CheckBox
|
|
android:id="@+id/checkbox_jne"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="JNE" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/checkbox_pos"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:text="POS Indonesia" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/checkbox_tiki"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:text="TIKI" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Foto Profil Toko -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="24dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="14. Foto Profil Toko"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/container_store_img"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:layout_marginTop="10dp"
|
|
android:background="@android:drawable/editbox_background">
|
|
|
|
<ImageView
|
|
android:id="@+id/img_store"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerInside"
|
|
android:visibility="gone" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/layout_upload_store_img"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:src="@android:drawable/ic_menu_upload" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:text="Unggah dokumen Anda di sini"
|
|
android:textColor="#777777" />
|
|
</LinearLayout>
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- KTP -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="24dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="15. Dokumen KTP"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="*"
|
|
style="@style/body_medium"
|
|
android:textColor="@color/red_required"
|
|
android:layout_gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/container_ktp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:layout_marginTop="10dp"
|
|
android:background="@android:drawable/editbox_background">
|
|
|
|
<ImageView
|
|
android:id="@+id/img_ktp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerInside"
|
|
android:visibility="gone" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/layout_upload_ktp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:src="@android:drawable/ic_menu_upload" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:text="Unggah dokumen Anda di sini"
|
|
android:textColor="#777777" />
|
|
</LinearLayout>
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- NIB -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="24dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="16. Dokumen NIB"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="*"
|
|
style="@style/body_medium"
|
|
android:textColor="@color/red_required"
|
|
android:layout_gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/container_nib"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:layout_marginTop="8dp"
|
|
android:background="@android:drawable/editbox_background">
|
|
|
|
<ImageView
|
|
android:id="@+id/img_nib"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerInside"
|
|
android:visibility="gone" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/layout_upload_nib"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:src="@android:drawable/ic_menu_upload" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:text="Unggah dokumen Anda di sini"
|
|
android:textColor="#777777" />
|
|
</LinearLayout>
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- NPWP -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="24dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="17. Dokumen NPWP"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="*"
|
|
style="@style/body_medium"
|
|
android:textColor="@color/red_required"
|
|
android:layout_gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/container_npwp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:layout_marginTop="8dp"
|
|
android:background="@android:drawable/editbox_background">
|
|
|
|
<ImageView
|
|
android:id="@+id/img_npwp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerInside"
|
|
android:visibility="gone" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/layout_upload_npwp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:src="@android:drawable/ic_menu_upload" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:text="Unggah dokumen Anda di sini"
|
|
android:textColor="#777777" />
|
|
</LinearLayout>
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:visibility="gone">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="17. Pilih Titik Lokasi Usaha"
|
|
style="@style/body_medium"
|
|
android:layout_marginEnd="4dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="*"
|
|
style="@style/body_medium"
|
|
android:textColor="@color/red_required"
|
|
android:layout_gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<CheckBox
|
|
android:id="@+id/checkbox_approve"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Saya telah membaca dan menyetujui Syarat dan Ketentuan aplikasi" />
|
|
|
|
</LinearLayout>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/map_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="200dp"
|
|
android:layout_marginTop="8dp"
|
|
android:background="@android:color/darker_gray"
|
|
android:visibility="gone">
|
|
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop"
|
|
android:src="@drawable/placeholder_image" />
|
|
</FrameLayout>
|
|
|
|
<Button
|
|
android:id="@+id/btn_register"
|
|
style="@style/button.large.disabled.long"
|
|
android:enabled="true"
|
|
android:layout_marginTop="24dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:text="Daftar" />
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
</LinearLayout> |