1
0
mirror of https://github.com/wasabeef/glide-transformations.git synced 2025-12-26 21:00:02 +08:00
Files
glide-transformations/example/src/main/res/layout/activity_main.xml
Daichi Furiya 3aa8e53c6a [WIP] Migrate to AndroidX (#141)
Migrate to AndroidX
2018-11-16 16:19:42 +09:00

19 lines
676 B
XML

<?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"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/list"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
/>
</androidx.constraintlayout.widget.ConstraintLayout>