1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
-
- <androidx.cardview.widget.CardView
-
- android:id="@+id/card_view"
- android:clickable="true"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="10dp">
-
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
-
- <ImageView
- android:layout_width="match_parent"
- android:layout_height="200dp"
- android:layout_centerHorizontal="true"
- android:id="@+id/flower_photo"
- android:src="@drawable/flor_de_maga"
- android:contentDescription="Flower Image" />
- <!-- />-->
-
- <TextView
- android:layout_below="@+id/flower_photo"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/flower_name"
- android:layout_margin="5dp"
- android:textSize="15sp"
- android:text="Flower Name "/>
-
-
-
- </RelativeLayout>
-
- </androidx.cardview.widget.CardView>
-
- </RelativeLayout>
|