内部にlinearlayoutとimageviewがあります。linearlayout は角が丸くなっています。画像をビューの最上部に表示したいのですが、画像が表示されたときに角が丸くなっていません。これには何ができますか?iOS には、コンテナー (UIView) のクリップ サブビュー オプションがあることを知っています。しかし、Androidではわかりません。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:gravity="top"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/cell_rounded_edges">
<ImageView
android:id="@+id/prodImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:gravity="top"
android:focusable="false"
android:clickable="false"
android:adjustViewBounds="true"
/>
.....and so on