如何使用XML绘制圆角矩形?

问题描述 投票:0回答:4

这是用于绘制具有四个圆角的矩形的标记片段:

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

    <solid android:color="#fff"></solid>

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

    <corners android:radius="2dp"></corners>

</shape>

但是如果我只想将一侧(两个角)的角变圆,我该怎么做?

谢谢。

android android-xml android-drawable
4个回答
18
投票
   <corners
    android:bottomLeftRadius="2dp"
    android:bottomRightRadius="2dp"
    android:topLeftRadius="2dp"
    android:topRightRadius="2dp" />

6
投票

创建可绘制资源:-

<?xml version="1.0" encoding="utf-8"?>
<!--  res/drawable/rounded_edittext.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" android:padding="10dp">
<solid android:color="#FFFFFF"/>
<corners
 android:bottomRightRadius="15dp"
 android:bottomLeftRadius="15dp"
 android:topLeftRadius="15dp"
 android:topRightRadius="15dp"/>
</shape>

设置在任何视图的背景上方。


0
投票

按照您的要求这样做。

<corners
android:bottomLeftRadius="2dp"
android:bottomRightRadius="2dp"
android:topLeftRadius="0dp"
android:topRightRadius="0dp" /> 

<corners
android:bottomLeftRadius="0dp"
android:bottomRightRadius="0dp"
android:topLeftRadius="2dp"
android:topRightRadius="2dp" />

或任何其他显示您运行时间的效果。可以在 xml 文件中将其显示出来。


0
投票

形状 xmlns:android="http://schemas.android.com/apk/res/android" 机器人:形状=“矩形”>

<solid android:color="#FF0000" />

<corners android:radius="16dp" />
© www.soinside.com 2019 - 2024. All rights reserved.