0
GestureOverlayView
을 코디네이터 레이아웃의 NestedScrollView
에 어떻게 넣을 수 있습니까? 내 문제는 내가 gestureOverlay
짝수 페이지를 스크롤하면 제스처를 사용할 수 없기 때문입니다.CoordinatorLayout scroll 및 NestedScrollView의 GestureOverlayView
내 activity.xml 내가 GestureOverlayView 전체 페이지 스크롤에 수직으로 그려은 무승부를 중지하는 경우
<android.support.design.widget.CoordinatorLayout
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:fitsSystemWindows="true"
android:id="@+id/scrollViewreceipt"
tools:context=".activities.activity">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/activityRecicler"
android:layout_width="match_parent"
android:layout_height="300dp"
android:layout_marginTop="15dp"
app:stackFromEnd="true" />
<android.gesture.GestureOverlayView
android:id="@+id/signaturePad"
android:layout_width="match_parent"
android:layout_height="80dp"
android:layout_weight="5"
android:background="#d3d3d3"
android:eventsInterceptionEnabled="true"
android:fadeEnabled="false"
android:gestureColor="#333"
android:gestureStrokeLengthThreshold="0.1"
android:gestureStrokeType="multiple"
android:fadeOffset="5000"
android:orientation="vertical">
</android.gesture.GestureOverlayView>
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="testImage"
android:text="testami"
/>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="56dp"
android:layout_height="56dp"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:backgroundTint="#b2d33f"
android:src="@drawable/ic_save_black_36dp"
android:onClick="saveReceipt" />
</android.support.design.widget.CoordinatorLayout>
.