FlowLiveWallpaper/app/src/main/res/layout/item_flow.xml

21 lines
799 B
XML

<androidx.constraintlayout.widget.ConstraintLayout 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">
<ImageView
android:id="@+id/item_image_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ImageView
android:id="@+id/item_like"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_marginTop="12dp"
android:layout_marginEnd="12dp"
android:src="@drawable/dislike"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>