61 lines
2.0 KiB
XML
61 lines
2.0 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/kioskCard4"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_margin="5dp"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<androidx.cardview.widget.CardView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
app:cardCornerRadius="10dp">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="150dp"
|
||
|
|
android:layout_height="150dp"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/kioskCardimg"
|
||
|
|
android:layout_width="100dp"
|
||
|
|
android:layout_height="80dp"
|
||
|
|
android:layout_gravity="center">
|
||
|
|
</ImageView>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/kioskCardtextFood"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
android:text="Hyderabadi Biriyani"
|
||
|
|
android:fontFamily="@font/gilorymedium">
|
||
|
|
</TextView>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/kioskCardtextPrice"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="\u20b9 230"
|
||
|
|
android:fontFamily="@font/gilorymedium"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
</TextView>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</androidx.cardview.widget.CardView>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|