圆形容器布局

时间:2014-09-16 15:08:46

标签: android android-layout

是否可以在Android中进行循环容器布局?我试图为WebView创建一个圆形容器,以显示图像中的效果:

enter image description here

在iOS中我可以通过UIViewController图层来完成:

CALayer *myLayer = self.layer;
[myLayer setCornerRadius:frame.size.width/2];
[myLayer setBorderWidth:LINE_THICKNESS];
[myLayer setMasksToBounds:YES];

Android中有类似的东西吗?

1 个答案:

答案 0 :(得分:0)

<FrameLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:paddingTop="10dip"
    android:paddingBottom="10dip"
    android:paddingLeft="1dip"
    android:paddingRight="1dip"
    android:background="@drawable/white_rounded_area"
    >
        <WebView
            android:id="@+id/web_view"
            android:layout_width="300dip"
            android:layout_height="400dip"
            android:layout_gravity="center"
        />
</FrameLayout>

根据您的需要设置填充,以进行网页浏览。