Android 如何在片段中添加具有视差效果的图像?

Android 如何在片段中添加具有视差效果的图像?,android,xml,android-fragments,Android,Xml,Android Fragments,我试图在片段顶部添加一个图像,当滚动查看图像细节时,它应该具有视差效果 我尝试使用可折叠工具栏来实现这一点,但问题是,如果图像处于纵向模式,图像不会填充整个工具栏,在侧面留下空白。而且那里也没有视差 这是我到目前为止所做工作的xml代码 请告诉我需要做哪些更改才能实现我想要的,非常感谢高级版。对于图像视图,请使用android:scaleType=“centerCrop”不,它不起作用,这可能是因为对可折叠工具栏的最大高度有任何限制吗?当你使用它时,你会得到什么UI…我在这里使用它(co

我试图在片段顶部添加一个图像,当滚动查看图像细节时,它应该具有视差效果

我尝试使用可折叠工具栏来实现这一点,但问题是,如果图像处于纵向模式,图像不会填充整个工具栏,在侧面留下空白。而且那里也没有视差

这是我到目前为止所做工作的xml代码


请告诉我需要做哪些更改才能实现我想要的,非常感谢高级版。

对于
图像视图,请使用
android:scaleType=“centerCrop”

不,它不起作用,这可能是因为对可折叠工具栏的最大高度有任何限制吗?当你使用它时,你会得到什么UI…我在这里使用它(
collagingtorbalayout
with
android:scaleType=“centerCrop”
,它正在工作)@User9132将imageView的布局\高度设置为匹配\父级,将scaleType设置为centerCrop@KartikSharma,它仍然是一样的。@JohnO'Reilly,当图像没有那么长时它工作,图像填充可折叠工具栏没有任何问题,但是当图像很长时,有空格。使用
match_parent
查看图像,使用
centerCrop
查看比例类型。谢谢,但它不是这样工作的。
<android.support.design.widget.CoordinatorLayout
    android:id="@+id/coordinatorlayout"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    app:expandedTitleMarginStart="70dp">

    <android.support.design.widget.AppBarLayout
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:layout_width="fill_parent"
        android:id="@+id/actionbarlayout"
        android:layout_height="207dp">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/CollapsingToolbarLayout1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:contentScrim="@color/colorPrimary"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            >

            <ImageView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:scaleType="centerInside"
                android:id="@+id/details_Image"
                app:layout_collapseMode="parallax"
                />

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar1"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
                app:layout_collapseMode="pin"
                android:minHeight="?attr/actionBarSize"/>

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

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

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



        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <android.support.v7.widget.CardView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                card_view:cardElevation="3dp"
                card_view:cardCornerRadius="7dp"
                android:layout_margin="5dp"
                android:id="@+id/new_order"
                card_view:cardBackgroundColor="@color/cardview_shadow_end_color"
                >

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

                    <RelativeLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content">

                        <LinearLayout
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:gravity="center"
                            android:orientation="horizontal"
                            android:layout_marginTop="15dp">

                            <RelativeLayout
                                android:layout_width="match_parent"
                                android:layout_height="match_parent"
                                android:layout_weight="1">

                                <ImageButton
                                    android:layout_width="wrap_content"
                                    android:layout_height="wrap_content"
                                    android:id="@+id/download"
                                    android:background="@null"
                                    android:src="@drawable/ic_action_ic_file_download_white_36dp"
                                    android:layout_centerInParent="true"
                                    />

                            </RelativeLayout>
                            <RelativeLayout
                                android:layout_width="match_parent"
                                android:layout_height="match_parent"
                                android:layout_weight="1">

                                <ImageView
                                    android:layout_width="wrap_content"
                                    android:layout_height="wrap_content"
                                    android:id="@+id/favourite"
                                    android:layout_centerInParent="true"
                                    />

                            </RelativeLayout>
                            <RelativeLayout
                                android:layout_width="match_parent"
                                android:layout_height="match_parent"
                                android:layout_weight="1">


                                <ImageButton
                                    android:layout_width="wrap_content"
                                    android:layout_height="wrap_content"
                                    android:id="@+id/zoom"
                                    android:background="@null"
                                    android:src="@drawable/ic_action_ic_zoom_out_map_white_36dp"
                                    android:layout_centerInParent="true"
                                    />

                            </RelativeLayout>



                        </LinearLayout>

                    </RelativeLayout>

                    <ScrollView
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_margin="20dp">

                        <TextView
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:id="@+id/imageDescription"
                            android:text="Sample text"

                            />



                    </ScrollView>


                </LinearLayout>

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

        </LinearLayout>

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

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:visibility="gone"
        android:id="@+id/fullimage"/>

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