我有ImageView的边框:
我希望通过此边框在ImageView中叠加图像,但我得到这样的结果:
答案 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>