12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:ignore="ResourceName">
- <com.google.android.material.card.MaterialCardView
- android:layout_width="match_parent"
- android:layout_height="@dimen/divider_278px"
- android:theme="@style/Theme.MaterialComponents.NoActionBar"
- app:cardBackgroundColor="@android:color/white"
- app:cardCornerRadius="@dimen/divider_20px">
- <androidx.appcompat.widget.AppCompatImageView
- android:id="@+id/guideImage"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:scaleType="fitXY" />
- </com.google.android.material.card.MaterialCardView>
- </LinearLayout>
|