Rev 3 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
<?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"
tools:context=".fragment.GalleryFragment"
android:background="@color/windowBackgroundTopic"
android:padding="5dp">
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/fragment_gallery_viewpager2"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.555"
app:layout_constraintStart_toStartOf="parent"
tools:layout_editor_absoluteY="16dp">
</androidx.viewpager2.widget.ViewPager2>
<ImageButton
android:id="@+id/fragment_gallery_button_previous"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/exo_ic_chevron_left"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"/>
<ImageButton
android:id="@+id/fragment_gallery_button_next"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/exo_ic_chevron_right"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>