如何在android中创建圆形弯曲矩形?

时间:2015-10-20 05:57:47

标签: android

我需要创建这种设计。帮助我。

enter image description here

将不胜感激。

3 个答案:

答案 0 :(得分:-1)

在drawable文件夹中创建一个xml文件,并将此drawable文件设置为视图的背景。它会帮助你...

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

    <!-- <stroke android:width="1dp"
         android:color="#ff666666"
         />-->

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

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

答案 1 :(得分:-1)

在Drawable文件夹中创建文件

文件名:round_corner.xml

<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" android:padding="10dp">
    <solid android:color="#000000"/>
    <corners
        android:bottomRightRadius="5dp"
        android:bottomLeftRadius="5dp"
        android:topLeftRadius="5dp"
        android:topRightRadius="5dp"/>
</shape>

在xml文件中应用背景,如下所示:

android:background="@drawable/round_corner"

答案 2 :(得分:-1)

这对我来说只是检查了它。

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <corners
        android:radius="105dp" />
    <gradient
        android:angle="270"
  />
    <stroke
        android:width="1dp"
        android:color="#000" />
    <padding
        android:left="15dp"
        android:top="15dp"
        android:right="15dp"
        android:bottom="15dp" />
</shape>