自定义背景,带有嵌入式圆形边框

时间:2019-01-14 13:30:54

标签: android android-layout background

是否可以在Android中创建下图所示的白色半透明背景?谢谢!

Custom rounded border

2 个答案:

答案 0 :(得分:0)

透明颜色代码为:

  

#80FFFFFF

在您的TextView“ Fratelli Club”中添加此文件,并使用透明度的百分比。

答案 1 :(得分:0)

请尝试将此形状文件仅用于底部的圆角

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
    android:bottomLeftRadius="40dp"
    android:bottomRightRadius="40dp"
    android:topLeftRadius="0dp"
    android:topRightRadius="0dp"/>
<solid
    android:color="@color/colorWhite"/>

</shape>