Можно ли приостановить автоматическое изменение изображения в флиппере вида одним касанием - PullRequest
0 голосов
/ 09 июня 2018

Можно ли приостановить автоматическое изменение изображения одним касанием пальца в поле зрения.Здесь я дал вид продукта 360 с некоторыми изображениями, теперь я хочу дать пользователям возможность сделать паузу и увидеть изображение.

Ниже приведен текущий XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:id="@+id/activity_kten_seeround"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".KtenSeeround">
    <ViewFlipper
        android:id="@+id/flipper1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:autoStart="true"
        android:flipInterval="500"
        >
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/image1"
            android:src="@drawable/kten75"/>
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/image2"
            android:src="@drawable/kten70"/>
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/image3"
            android:src="@drawable/kten65"/>
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/image4"
            android:src="@drawable/kten60"/>
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/image5"
            android:src="@drawable/kten55"/>

    </ViewFlipper>

</RelativeLayout> 
...