几个星期前,Chris Bane发布了图书馆名称CollapsingTitleLayout(这里是链接https://gist.github.com/chrisbanes/91ac8a20acfbdc410a68),当滚动图像透明且工具栏的标题较小并且堆叠在一起时,该工具栏具有图像视图工具栏区域。无论如何我的问题是当我从这个例子中使用这个库灵感时(这里是布局xml https://github.com/chrisbanes/philm/blob/master/app/src/main/res/layout/fragment_movie_detail_list.xml我不能在这里为代码部分示例写另一个链接,因为我的声誉很低)但我没有&# 39;在我的大脑中聚在一起,我不知道这个xml需要什么,在这个链接中他尝试了列表视图的滚动。但是我使用ScrollView,有没有人帮帮我这个?这是我的XML
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_height="match_parent"
android:layout_width="match_parent">
<.....view.CollapsingTitleLayout
android:id="@+id/backdrop_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="6dp"
android:textAppearance="@style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse"
app:expandedTextSize="56dp"
app:expandedMargin="16dp">
<....view.BackdropImageView
android:id="@+id/imageview_fanart"
android:layout_width="match_parent"
android:layout_height="224dp"
android:scaleType="fitXY"
android:background="#9E9E9E" />
<android.support.v7.widget.Toolbar
android:id="@+id/activity_example_toolbar"
android:layout_height="?attr/actionBarSize"
android:layout_width="match_parent"
android:background="@color/Transparent" />
</...view.CollapsingTitleLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_marginTop="224dp"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:padding="16dp"
android:layout_height="wrap_content"
android:textSize="16sp" />
<android.support.v7.widget.CardView
android:layout_width="match_parent"
app:cardCornerRadius="5dp"
app:cardElevation="7dp"
android:layout_margin="6dp"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"
android:textColor="@color/Black"
android:textSize="14sp"/>
</android.support.v7.widget.CardView>
</LinearLayout>
</ScrollView>
</FrameLayout>
i'm trying to understand what i'm looking but i'm sorry about my bad english and my code experience (i'm at 4 months in android sorry )Thank you for everything for now