Rev 3 | 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="fill_parent"
android:layout_height="fill_parent"
android:background="@color/windowBackgroundTopic"
tools:context=".fragment.GalleryFragment">
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/fragment_gallery_viewpager2"
android:layout_width="match_parent"
android:layout_height="match_parent">
</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"
android:visibility="visible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="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"
android:visibility="visible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>