通过边框drawable在ImageView中叠加图像

时间:2014-07-22 22:08:10

标签: android imageview border drawable

我有ImageView的边框:enter image description here

我希望通过此边框在ImageView中叠加图像,但我得到这样的结果:

enter image description here

1 个答案:

答案 0 :(得分:0)

我使用FrameLayout解决了我的问题

        <FrameLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
        <RelativeLayout
                android:layout_width="fill_parent"
                android:layout_height="fill_parent">
            <ImageView
                    android:layout_width="125dp"
                    android:layout_height="125dp"
                    android:id="@+id/itemImage"
                    android:focusable="false"
                    android:cropToPadding="false" android:scaleType="centerInside"
                    android:layout_centerInParent="true"/>
            <RelativeLayout
                    android:layout_width="131.5dp"
                    android:layout_height="131.5dp" android:background="@drawable/image_view_border">
            </RelativeLayout>
        </RelativeLayout>
    </FrameLayout>