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>
しかし、うまくいきません...何が間違っていますか?