<?xml version="1.0" encoding="utf-8"?>
|
<layout
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
>
|
<data>
|
<variable
|
name="url"
|
type="String" />
|
</data>
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
>
|
<androidx.constraintlayout.utils.widget.ImageFilterView
|
android:layout_width="0dp"
|
android:layout_height="0dp"
|
app:layout_constraintDimensionRatio="1:1"
|
app:layout_constraintWidth_percent="1"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
app:round="10dp"
|
app:imageUrl="@{url}"
|
/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
</layout>
|