-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrow_show_ingridient.xml
37 lines (31 loc) · 1.25 KB
/
row_show_ingridient.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?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"
xmlns:app="http://schemas.android.com/apk/res-auto"
app:cardBackgroundColor="@color/white"
android:layout_margin="5dp">
<LinearLayout
android:padding="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/ingridient_amount"
android:layout_marginLeft="5dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Amount"
android:textSize="18dp"
android:textColor="@color/black"/>
<TextView
android:id="@+id/ingridient_name"
android:layout_marginLeft="5dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Ingridient Name"
android:textSize="18dp"
android:textColor="@color/black"/>
</LinearLayout>
</androidx.cardview.widget.CardView>