Files
Haleon-Egypt-PD/GSKMTOrange/src/main/res/layout/item_pd_image.xml
T
2025-10-03 13:35:15 +05:30

31 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="12dp"
app:cardCornerRadius="12dp"
app:cardElevation="5dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/ivRawImage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="centerCrop"/>
<!-- <Button
android:id="@+id/btnViewImage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/white"
android:gravity="center"
android:textAllCaps="false"
android:text="View Image Analytics"
android:background="@color/colorAccent"/>-->
</LinearLayout>
</androidx.cardview.widget.CardView>