gpt4 book ai didi

android - 如何将 ScrollView 放在 android 的折叠工具栏布局中?

转载 作者:搜寻专家 更新时间:2023-11-01 09:36:00 25 4
gpt4 key购买 nike

我想要类似于下面问的问题的东西,而不是“ View 1”,它将是 ScrollView : android: Create layout which collapse on scrolling

 <?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:fitsSystemWindows="true"
android:background="#456342"
android:layout_height="match_parent"
android:layout_marginBottom="50dp"
android:clickable="true"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.design.widget.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
android:theme="@style/AppTheme.AppBarOverlay"
app:contentScrim="?attr/colorPrimary">



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



<include layout="@layout/activity_sub_card_content1"
android:layout_height="200dp"
android:layout_width="match_parent"/>



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



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

<include layout="@layout/activity_sub_card_content2" />

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

下面给出的 xml 代码是我已包含在我的 CollapsingToolbarLayout 中的布局“activity_sub_card_content1”。我想要类似这样的东西:

enter image description here

How to place a layout below toolbar in collapsing toolbar layout?

但它有一个不太长的相对布局。我的会很长,所以我想把我的布局放在 ScrollView 中。

我试过的代码显示了我的 ScrollView ,但它没有滚动它,而是折叠了工具栏。

<ScrollView android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/trial"
xmlns:android="http://schemas.android.com/apk/res/android">

<LinearLayout
android:clickable="true"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<android.support.v7.widget.CardView
android:layout_margin="20dp"
android:layout_width="match_parent"
android:layout_height="200dp">

</android.support.v7.widget.CardView>

<android.support.v7.widget.CardView
android:layout_margin="20dp"
android:layout_width="match_parent"
android:layout_height="200dp">

</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:layout_margin="20dp"
android:layout_width="match_parent"
android:layout_height="200dp">

</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:layout_margin="20dp"
android:layout_width="match_parent"
android:layout_height="200dp">

</android.support.v7.widget.CardView>




</LinearLayout>

</ScrollView>

最佳答案

您可以尝试在您的代码中添加这两行:

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

关于android - 如何将 ScrollView 放在 android 的折叠工具栏布局中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43114169/

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