如何在android的布局中制作带圆角的背景图片?

时间:2013-03-28 05:06:10

标签: android layout

我正在尝试制作带圆角的背景图像,以便在布局中进行设置。问题是如何使用可绘制的XML为圆角设置图像而不是使用纯色。

    <?xml version="1.0" encoding="utf-8"?>
     <shape xmlns:android="http://schemas.android.com/apk/res/android"
      android:shape="rectangle" android:padding="10dp">
      <!-- you can use any color you want I used here gray color-->
      <solid android:color="#ffffff"/> 
       <corners
     android:bottomRightRadius="10dp"
      android:bottomLeftRadius="10dp"
      android:topLeftRadius="10dp"
   android:topRightRadius="10dp"/>
   </shape>

1 个答案:

答案 0 :(得分:2)

这对我有用:只需将文件名 round_corners.xml 添加到 drawable

<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="rectangle">
    <gradient android:startColor="@color/lemon" android:endColor="@color/lemon_cream" android:angle="90" />
    <corners android:radius="30dp" />
</shape>

将此XML添加到文件中并享受圆角。