带圆角的 FrameLayout

Posted

技术标签:

【中文标题】带圆角的 FrameLayout【英文标题】:FrameLayout with rounded corners 【发布时间】:2016-07-12 12:34:00 【问题描述】:

我的根视图(线性:垂直)中有一个 FrameLayout,用于根据用户输入保存不同的片段。 FrameLayout 比背景小,所以它看起来是“浮动的”。

如何使 FrameLayout 的角变圆?

FrameLayout 中的碎片不是图片,所以我无法裁剪它们。

【问题讨论】:

你不能把一个手工绘制的drawable作为你的FrameLayout的背景吗? 【参考方案1】:

创建一个 xml 文件,例如your_rounded_shape.xml,在你的drawable文件夹中添加以下代码:

<?xml version="1.0" encoding="UTF-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
    <solid android:color="#CCCCCC"/>    

    <stroke android:
        android:color="#999999"/>

    <padding android:left="2dp"
         android:top="2dp"
         android:right="2dp"
         android:bottom="2dp"/> 

    <corners android:radius="8dp" />
</shape>

然后在您的FrameLayout 中使用your_rounded_shape.xml 作为背景。像这样的:

<FrameLayout
    android:
    android:
    android:background="@drawable/your_rounded_shape"/>

【讨论】:

这太完美了!谢谢,这正是我想要的。【参考方案2】:

将 FrameLayout 替换为 CardView 布局。

<android.support.v7.widget.CardView
    android:layout_
    android:layout_
    app:cardCornerRadius="8dp">

</android.support.v7.widget.CardView>

【讨论】:

【参考方案3】:

只是对上述答案的改进: 这个xml文件的名称,比如说rounded_frame_layout.xml

<?xml version="1.0" encoding="UTF-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
    <solid android:color="#CCCCCC"/>    

    <stroke android:
        android:color="#999999"/>

    <padding android:left="2dp"
         android:top="2dp"
         android:right="2dp"
         android:bottom="2dp"/> 

    <corners android:radius="8dp"/> 
</shape>


Then use your drawable as follows:

<FrameLayout
     android:
     android:
     android:background="@drawable/rounded_frame_layout"/>

【讨论】:

这使得形状不可重复使用

以上是关于带圆角的 FrameLayout的主要内容,如果未能解决你的问题,请参考以下文章

如何制作带圆角的窗户

带圆角的 TextInputLayout

带边框颜色的圆角

带圆角的画布 clearRect

SwiftUI for MacOS 窗口,带圆角,不带标题栏

Qml 一侧带边框的圆角