<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout 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"
|
>
|
|
<ImageView
|
android:id="@+id/imageView"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:src="@drawable/bg_home_root_net_detail"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintDimensionRatio="676:505"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent" />
|
|
<androidx.constraintlayout.utils.widget.ImageFilterView
|
android:id="@+id/imageFilterView"
|
android:layout_width="0dp"
|
android:layout_height="0dp"
|
android:background="@color/design_default_color_background"
|
app:roundPercent="1"
|
app:layout_constraintDimensionRatio="1"
|
app:layout_constraintWidth_percent="0.053"
|
app:layout_constraintHorizontal_bias="0.37"
|
app:layout_constraintVertical_bias="0.334"
|
app:layout_constraintEnd_toEndOf="@id/imageView"
|
app:layout_constraintStart_toStartOf="@id/imageView"
|
app:layout_constraintBottom_toBottomOf="@id/imageView"
|
app:layout_constraintTop_toTopOf="@id/imageView"
|
/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|