5

私は2つScrollViewのsで作業する必要があります。1つは内側AppBarLayoutに、もう1つは外側に。

外側についてはScrollView、 と を使用していNestedScrollViewますが、appbar_scrolling_view_behavior正しく機能しています。

内部にはScrollviewwithを使用していますapp:layout_scrollFlags="scroll|enterAlways|snap"

私の問題はNestedScrollView、イベントをオーバーライドしているように見えることです。領域ScrollViewに触れても、スクロールするのはイベントです。ScrollViewNestedScrollView

それを行う方法はありますか?

以下のコードを参照してください。

<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.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <ScrollView
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:background="@android:color/white"
            app:layout_scrollFlags="scroll|enterAlways|snap">

            <TextView                
                android:layout_width="match_parent"
                android:layout_height="wrap_content"/>  

        </ScrollView>       
     </android.support.design.widget.AppBarLayout>

     <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <TextView                
               android:layout_width="match_parent"
               android:layout_height="wrap_content"/>   

    </android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
4

1 に答える 1

7

多分これはうまくいくでしょう:

 <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.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:background="@android:color/white"
        app:layout_scrollFlags="scroll|enterAlways|snap"
        android:id="@+id/scr">

        <TextView                
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>  

    </ScrollView>       
 </android.support.design.widget.AppBarLayout>

 <android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <TextView                
           android:layout_width="match_parent"
           android:layout_height="wrap_content"/>   

</android.support.v4.widget.NestedScrollView>

ScrollView scr = (ScrollView) findViewById(R.id.scr);
scr.setOnTouchListener(new ScrollView.OnTouchListener() {
    @Override
    public boolean onTouch(View v, MotionEvent event) {
        int action = event.getAction();
        switch (action) {
        case MotionEvent.ACTION_DOWN:
            // Disallow ScrollView to intercept touch events.
            v.getParent().requestDisallowInterceptTouchEvent(true);
            break;

        case MotionEvent.ACTION_UP:
            // Allow ScrollView to intercept touch events.
            v.getParent().requestDisallowInterceptTouchEvent(false);
            break;
        }

        // Handle ScrollView touch events.
        v.onTouchEvent(event);
        return true;
    }
});

スクロール ビューのスクロール メソッドをオーバーライドします。

于 2016-04-23T08:30:08.020 に答える