mirror of
https://github.com/shaulascr/ecommerce_serang.git
synced 2025-08-13 10:42:21 +00:00
64 lines
2.4 KiB
XML
64 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="start"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginVertical="8dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:orientation="horizontal">
|
|
<RadioButton
|
|
android:id="@+id/radio_btn_cost"
|
|
android:layout_margin="4dp"
|
|
android:clickable="true"
|
|
android:gravity="center"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
<TextView
|
|
android:id="@+id/courier_name_cost"
|
|
android:fontFamily="@font/dmsans_bold"
|
|
android:textSize="20sp"
|
|
android:padding="4dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="JNE"/>
|
|
<TextView
|
|
android:id="@+id/est_date"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="16sp"
|
|
android:paddingHorizontal="8dp"
|
|
android:text="Estimasi 3-4 hari"/>
|
|
</LinearLayout>
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/cost_price"
|
|
android:textSize="16sp"
|
|
android:gravity="center_vertical"
|
|
android:layout_margin="16dp"
|
|
android:fontFamily="@font/dmsans_semibold"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:text="Rp15.0000"/>
|
|
|
|
</LinearLayout>
|
|
<View
|
|
android:id="@+id/divider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="#E0E0E0"
|
|
app:layout_constraintTop_toBottomOf="@id/linear_toolbar" />
|
|
|
|
</androidx.cardview.widget.CardView> |