Я занимаюсь разработкой приложения для датирования и использую библиотеку SwipeCards . Я использую атрибуты вправо и влево. С помощью этой библиотеки пользователь может также провести пальцем вниз и сверху. Но я хочу игнорировать считывание карт при сенсорном событии и активировать просмотр прокрутки элемента адаптера, когда пользователь проводит пальцем по нижнему или верхнему направлениям.
Моя оценка; Я должен реализовать детектор жестов для сильно удаляемой карты во фрагменте и определить направление снизу или сверху, а затем сфокусировать элемент адаптера Scrollview scroll. Но я не мог понять, как это решить. Заранее спасибо.
Это мой фрагмент XML с картой Swipeable:
<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:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:mContext="com.genesissoft.musictwin.fragment.MatchScreenFragment">
<Button
android:id="@+id/buttonOpenProfileMainFragment"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
android:text="Profile" />
<Button
android:id="@+id/buttonOpenMatchedUsersFragment"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="20dp"
android:layout_marginTop="20dp"
android:text="Messages" />
<com.lorentzos.flingswipe.SwipeFlingAdapterView
android:id="@+id/swipteFlingAdapterViewFrame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffeee9e2"
android:baselineAligned="false"
app:rotation_degrees="15.5"
tools:mContext=".MyActivity" />
А это мой XML-элемент адаптера для карт Swipeable:
<ScrollView 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">
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/cardViewUserProfile"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardCornerRadius="4dp">
<!--android:elevation="4dp"-->
///
///some texts and images
///
</android.support.v7.widget.CardView>
</ScrollView>