2

我里面有一个线性布局和一个图像视图。线性布局具有圆角。我希望我的图像位于视图的最顶部,但是当图像出现时,角不再是圆形的。我能为此做些什么?我知道在 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
4

2 回答 2

1

Any ViewGroup(包括LinearLayout)具有布尔 XML 属性android:clipChildren(也可通过编程方式设置setClipChildren(boolean)),但根据文档,默认情况下设置为 true。

于 2012-07-16T21:43:30.793 回答
0

我找到了一个伟大而简单的解决方案!

我的布局顶部有一个图像,其中只有顶角必须是圆形的(模拟 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>
于 2014-05-21T20:26:40.997 回答