Android:如何使用XML中的一个角创建圆形?

时间:2015-01-16 08:26:05

标签: android xml shape

我需要在xml中为android项目描述以下形状。 我知道有一个圆角的回转,但我怎么能实现那个矩形只有一个角落,其余的圆角?

the shape I need in xml

这不会像人们在很多问题中提到的那样被用作文本语音泡沫。 我只想将形状用作一行文本的背景。 形状颜色应该易于动态变换。

感谢您的帮助。

3 个答案:

答案 0 :(得分:5)

您可以将其添加到drawable文件夹中的文件中:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<solid android:color="@android:color/holo_blue_dark" />
<corners
    android:bottomLeftRadius="0dp"
    android:bottomRightRadius="15dp"
    android:topLeftRadius="15dp"
    android:topRightRadius="15dp" /></shape>

答案 1 :(得分:1)

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

    <corners android:bottomRightRadius="15dp"
             android:topLeftRadius="15dp"
             android:topRightRadius="15dp"/>
</shape>

答案 2 :(得分:1)

只需在drawable文件夹中创建一个xml文件,并将此xml设置为视图的背景。它应该像魅力一样工作。 如果您发现某些问题,请告诉我。

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<corners
    android:topLeftRadius="20dp"
    android:topRightRadius="20dp"
    android:bottomLeftRadius="0dp"
    android:bottomRightRadius="20dp"
 /></shape>