मैंने एक साधारण CollapsingToolbarLayout बनाया है और यह एक आकर्षण की तरह काम करता है। मेरी समस्या यह है, कि अगर मैं नेस्ट्रोक्रोलव्यू पर फ़्लिंग स्क्रॉल का उपयोग करने की कोशिश करता हूं , तो जब मैं अपनी उंगली को छोड़ता हूं तो यह बस रुक जाता है। सामान्य स्क्रॉलिंग काम करता है जैसे इसे करना चाहिए।
मेरी गतिविधियाँ कोड अपरिवर्तित हैं => स्वतः उत्पन्न खाली गतिविधि। (मैंने अभी-अभी android स्टूडियो में नई खाली गतिविधि बनाने पर क्लिक किया और XML को अभी तक संपादित किया है)।
मैंने यहां पढ़ा, कि इमेजव्यू पर स्क्रॉल इशारे ही छोटी गाड़ी हैं, लेकिन ऐसा नहीं है कि स्क्रॉलिंग ही छोटी गाड़ी है: यहां देखें ।
मैंने जावा कोड के माध्यम से "चिकनी स्क्रॉलिंग" को सक्रिय करने की कोशिश की । ऐसा लगता है जैसे मैं काफी दूर तक स्क्रॉल करता हूं कि छवि दृश्य अब दिखाई नहीं दे रहा है, इशारों को फिर से पहचाना जाता है।
TLDR: जब तक छवि-दृश्य दिखाई नहीं देता, तब तक इशारे से काम नहीं चलता है? मेरा XML कोड इस तरह दिखता है:
<android.support.design.widget.CoordinatorLayout
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:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/profile_app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/profile_collapsing_toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginStart="48dp"
app:expandedTitleMarginEnd="64dp"
android:fitsSystemWindows="true">
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="420dp"
android:scaleType="centerCrop"
android:fitsSystemWindows="true"
android:src="@drawable/headerbg"
android:maxHeight="192dp"
app:layout_collapseMode="parallax"/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_collapseMode="pin" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
app:layout_anchor="@id/profile_app_bar_layout"
app:layout_anchorGravity="bottom|right|end"
android:layout_height="@dimen/fab_size_normal"
android:layout_width="@dimen/fab_size_normal"
app:elevation="2dp"
app:pressedTranslationZ="12dp"
android:layout_marginRight="8dp"
android:layout_marginEnd="8dp"/>
<android.support.v4.widget.NestedScrollView
android:id="@+id/profile_content_scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_gravity="fill_vertical"
android:minHeight="192dp"
android:overScrollMode="ifContentScrolls"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/LoremIpsum"/>
</RelativeLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
ACTION_DOWN y=98 -> ACTION_MOVE y=-40 -> ACTION_MOVE y=-33 -> ACTION_UP y=97
। ऐसा लगता है कि अंतिम स्पर्श घटना पहले वाले के रूप में खुद को गलत बता रही है।