我正在开发日期应用程序,并使用SwipeCards库。我正在使用左右滑动属性。使用此库,用户也可以滑动底部和顶部方向。但是我想在触摸事件时忽略可滑动的卡,并在用户滑动底部或顶部方向时激活适配器项的scrollview。
我的估计是;我应该为可滑动卡的片段实现手势检测器,并检测底部或顶部方向,然后将适配器项Scrollview滚动到焦点。但是我不知道如何解决这个问题。预先感谢。
这是我的带有可滑动刷卡的片段xml:
<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:
<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>