gpt4 book ai didi

android - 避免在 CoordinatorLayout 内的 ViewPager 内的底部 View 中滚动

转载 作者:行者123 更新时间:2023-11-29 01:15:58 30 4
gpt4 key购买 nike

我的主布局中有这个结构

<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="wrap_content"
android:fitsSystemWindows="true"
tools:context="com.pingvalue.example.MainActivity">

<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed">

<include
android:id="@+id/linear_header"
layout="@layout/product_detail_header" />

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.CollapsingToolbarLayout>

<android.support.design.widget.TabLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"/>


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


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


</android.support.design.widget.CoordinatorLayout>

这是我在 ViewPager

中的 fragment 中使用的布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<android.support.v7.widget.RecyclerView
android:id="@+id/recycler"
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"
android:padding="6dp">

<EditText
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:drawableRight="@drawable/ic_insert_emoticon_black_24px"
android:gravity="center_vertical"
android:hint="@string/what_do_you_want_to_say"
android:textSize="16sp" />

<Button
android:layout_width="40dp"
android:layout_height="30dp"
android:layout_marginLeft="6dp"
android:background="@drawable/ic_send_selector"
android:enabled="false" />

</LinearLayout>

</LinearLayout>

我想实现以下行为。这是折叠 AppBarLayout 时的屏幕截图:

enter image description here

如您所见,带有 EditTextButton 的布局是可见的,但是当我向上滚动时它消失了。我已经尝试使用自定义 CoordinatorLayout 行为,但它不起作用,因为它不是我的 CoordinatorLayout 的直接子项。我也尝试将 match_parent 更改为 wrap_content 但它在 LinearLayout 下方放置了空白区域。

enter image description here

最佳答案

将带有 EditText 的 LinearLayout 放在 CoordinatorLayout 之外,并将所有内容包装在 LinearLayout 中。

<LinearLayout
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:context="com.pingvalue.example.MainActivity">

<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=1>

<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed">

<include
android:id="@+id/linear_header"
layout="@layout/product_detail_header" />

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.CollapsingToolbarLayout>

<android.support.design.widget.TabLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"/>


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

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


</android.support.design.widget.CoordinatorLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="6dp">

<EditText
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:drawableRight="@drawable/ic_insert_emoticon_black_24px"
android:gravity="center_vertical"
android:hint="@string/what_do_you_want_to_say"
android:textSize="16sp" />

<Button
android:layout_width="40dp"
android:layout_height="30dp"
android:layout_marginLeft="6dp"
android:background="@drawable/ic_send_selector"
android:enabled="false" />

</LinearLayout>

</LinearLayout>

无论您将标题滚动多远,这应该让您始终可以看到您的 Composer 区域。

关于android - 避免在 CoordinatorLayout 内的 ViewPager 内的底部 View 中滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39685302/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com