父 NestedScrollView 禁用所有功能
Parent NestedScrollView disabling all functions
所以,我的 activity 布局是这样的:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_activity_root_coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/main_activity_app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/main_activity_collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="@dimen/actionBarSize">
<include layout="@layout/include_toolbar" />
</android.support.design.widget.CollapsingToolbarLayout>
<LinearLayout
android:id="@+id/below_toolbar"
android:layout_width="match_parent"
android:layout_height="@dimen/actionBarSize"
android:background="@color/colorPrimary"
android:orientation="vertical"
android:visibility="gone">
<TextView
android:id="@+id/main_activity_sub_category_name"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="@dimen/layout_margin_list"
android:gravity="start|center_vertical"
android:textColor="@color/white"
android:textSize="@dimen/text_bigger" />
</LinearLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:id="@+id/scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/main_activity_fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ProgressBar
android:id="@+id/main_activity_progress_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:visibility="gone" />
</RelativeLayout>
</android.support.v4.widget.NestedScrollView>
<vb.uzoni.ui.view.BottomMenuView
android:id="@+id/main_activity_bottom_menu_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom" />
</android.support.design.widget.CoordinatorLayout>
现在,我需要在其中一个片段中实现聊天功能。 ChatFragment
布局如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="@dimen/actionBarSize"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/single_message_recycler_view"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<EditText
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Send" />
</LinearLayout>
</LinearLayout>
在预览中 window,它看起来像这样:
但实际上,它使用 NestedScrollView
作为父级,并将我的 EditText
和 Button
推到 NestedScrollView
的底部。
接下来我要做的是:
1. 禁用 NestedScrollView
的所有滚动
2. 我不想继承 NestedScrollView
的可滚动功能,所以我可以将我的 Button
和 EditText
放在视图的底部,它们将始终可见。
这怎么可能?
编辑
片段 NestedScrollView
现在出现问题:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView 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:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.v7.widget.RecyclerView
android:id="@+id/sub_categories_recycler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/homeDividerColor" />
</android.support.v4.widget.NestedScrollView>
它不显示回收器视图,也不执行应用程序滚动行为...
不需要使用NestedScrollView
。相反,您可以使用 -
<FrameLayout
android:id="@+id/scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<!-- Replace your fragment in this container -->
<FrameLayout
android:id="@+id/main_activity_fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ProgressBar
android:id="@+id/main_activity_progress_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:visibility="gone" />
</FrameLayout>
看来,我解决了你的NestedScrollView
问题
您可以尝试将 NestedScrollView
放入 Framelayout
容器中。并动态更换容器。
它将消除 Nestedscrollview
滚动问题
<android.support.design.widget.CoordinatorLayout
android:id="@+id/main_activity_root_coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/main_activity_fragment_container"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<--Your contents-->
</RelativeLayout>
</android.support.v4.widget.NestedScrollView>
</FrameLayout>
</android.support.design.widget.CoordinatorLayout>
所以,我的 activity 布局是这样的:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_activity_root_coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/main_activity_app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/main_activity_collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="@dimen/actionBarSize">
<include layout="@layout/include_toolbar" />
</android.support.design.widget.CollapsingToolbarLayout>
<LinearLayout
android:id="@+id/below_toolbar"
android:layout_width="match_parent"
android:layout_height="@dimen/actionBarSize"
android:background="@color/colorPrimary"
android:orientation="vertical"
android:visibility="gone">
<TextView
android:id="@+id/main_activity_sub_category_name"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="@dimen/layout_margin_list"
android:gravity="start|center_vertical"
android:textColor="@color/white"
android:textSize="@dimen/text_bigger" />
</LinearLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:id="@+id/scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/main_activity_fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ProgressBar
android:id="@+id/main_activity_progress_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:visibility="gone" />
</RelativeLayout>
</android.support.v4.widget.NestedScrollView>
<vb.uzoni.ui.view.BottomMenuView
android:id="@+id/main_activity_bottom_menu_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom" />
</android.support.design.widget.CoordinatorLayout>
现在,我需要在其中一个片段中实现聊天功能。 ChatFragment
布局如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="@dimen/actionBarSize"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/single_message_recycler_view"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<EditText
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Send" />
</LinearLayout>
</LinearLayout>
在预览中 window,它看起来像这样:
但实际上,它使用 NestedScrollView
作为父级,并将我的 EditText
和 Button
推到 NestedScrollView
的底部。
接下来我要做的是:
1. 禁用 NestedScrollView
的所有滚动
2. 我不想继承 NestedScrollView
的可滚动功能,所以我可以将我的 Button
和 EditText
放在视图的底部,它们将始终可见。
这怎么可能?
编辑
片段 NestedScrollView
现在出现问题:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView 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:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.v7.widget.RecyclerView
android:id="@+id/sub_categories_recycler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/homeDividerColor" />
</android.support.v4.widget.NestedScrollView>
它不显示回收器视图,也不执行应用程序滚动行为...
不需要使用NestedScrollView
。相反,您可以使用 -
<FrameLayout
android:id="@+id/scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<!-- Replace your fragment in this container -->
<FrameLayout
android:id="@+id/main_activity_fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ProgressBar
android:id="@+id/main_activity_progress_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:visibility="gone" />
</FrameLayout>
看来,我解决了你的NestedScrollView
问题
您可以尝试将 NestedScrollView
放入 Framelayout
容器中。并动态更换容器。
它将消除 Nestedscrollview
滚动问题
<android.support.design.widget.CoordinatorLayout
android:id="@+id/main_activity_root_coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/main_activity_fragment_container"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<--Your contents-->
</RelativeLayout>
</android.support.v4.widget.NestedScrollView>
</FrameLayout>
</android.support.design.widget.CoordinatorLayout>