将图像加载到ImageView的角落

时间:2016-09-27 13:44:41

标签: android xml layout imageview android-collapsingtoolbarlayout

我需要在Imageview的角落加载特定尺寸的图像

enter image description here

我不想添加多张Imageview,因为我不想丢失我的折叠工具栏动画

更新:添加了xml部分

<android.support.design.widget.CoordinatorLayout
    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:background="@android:color/background_light"
    android:fitsSystemWindows="true">


     <net.opacapp.multilinecollapsingtoolbar.CollapsingToolbarLayout
                android:id="@+id/collapsing"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:layout_scrollFlags="scroll|exitUntilCollapsed"
                app:contentScrim="@color/darkGray"
                app:expandedTitleTextAppearance="@style/CollapsedAppBarTopic"
                app:expandedTitleMarginStart="10dp"
                app:expandedTitleMarginEnd="64dp"
                app:expandedTitleMarginBottom="5dp"

                >
                <ImageView
                    android:id="@+id/Image"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center"
                    android:adjustViewBounds="true"
                    app:layout_collapseMode="parallax"
                    />
                <android.support.v7.widget.Toolbar
                    android:id="@+id/main.toolbar"
                    android:layout_width="match_parent"
                    android:layout_height="?attr/actionBarSize"
                    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                    app:layout_collapseMode="pin"
                    />
            </net.opacapp.multilinecollapsingtoolbar.CollapsingToolbarLayout>
 </android.support.design.widget.AppBarLayout>

1 个答案:

答案 0 :(得分:2)

尝试在协调器布局中使用相对布局。