51 lines
1.7 KiB
XML
51 lines
1.7 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">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/kioskCard4"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:padding="15dp"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="150dp"
|
||
|
|
android:layout_height="150dp"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:background="@drawable/kiosk_border_transperant"
|
||
|
|
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>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|