我有一个linearlayout和一个imageview。线性布局具有圆角。我希望我的图像位于视图的最顶部,但是当图像出现时,角落不再是圆角。我能为此做些什么?我知道在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
答案 0 :(得分:1)
任何ViewGroup
(包括LinearLayout
)都具有android:clipChildren
的布尔XML属性(也可以使用setClipChildren(boolean)
以编程方式设置)但是根据文档,这是默认情况下设为true。
答案 1 :(得分:1)
我找到了一个很好的解决方案!
我的布局顶部有一个图像,其中只有顶角必须是圆形的(模拟iOS中的剪辑到子视图),因为我的图层的所有角都是圆的。
在我的图像背景上:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#e3e3e3"/>
<corners android:bottomRightRadius="0dip"
android:bottomLeftRadius="0dip"
android:topLeftRadius="25dip"
android:topRightRadius="25dip"/>
<padding android:left="0dip" android:top="0dip" android:right="0dip" android:bottom="0dip" />
</shape>
在我的图层背景上:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#FFF"/>
<corners android:radius="25dip"/>
<padding android:left="0dip" android:top="0dip" android:right="0dip" android:bottom="0dip" />
</shape>