我想知道如何裁剪ImageView
具有固定宽度和高度的缩放背景图像parent
.
基本上,我希望使用缩放图像ImageView android:background
,然后我想裁剪图像中超出父级范围的部分。
到现在为止,我有这个代码:
<RelativeLayout android:id="@+id/time_foregrd"
android:layout_width="57px"
android:layout_height="100px"
android:layout_marginLeft="100px"
android:layout_marginTop="285px"
android:clipChildren="true"
>
<ImageView android:layout_width="57px"
android:layout_height="338px"
android:minWidth="57px"
android:minHeight="338px"
android:background="@drawable/time_foreground"
/>
</RelativeLayout>
但它不起作用......我做错了什么?