作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我只是想知道如何制作这个半圆
但是我的输出是这样的
这是我的 xml:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:topLeftRadius="20dp"
android:topRightRadius="20dp"
/>
<stroke
android:width="2dip"
android:color="@android:color/darker_gray"
/>
<padding
android:left="4dp"
android:right="4dp"
/>
最佳答案
试试这个代码:
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#900021df"/>
<size
android:width="120dp"
android:height="60dp"/>
<corners
android:topLeftRadius="60dp"
android:topRightRadius="60dp"/>
</shape>
在drawable文件夹下创建一个semicircle.xml。
将以上代码添加到您的XML中。
请让我知道它是否有效...
输出看起来像
编辑:
对上面的代码稍加修改即可。
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<size
android:width="120dp"
android:height="60dp"/>
<corners
android:topLeftRadius="60dp"
android:topRightRadius="60dp"/>
<stroke
android:color="#919191"
android:width="1dp"
/>
</shape>
关于android - 如何在android中制作圆弧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47066435/
我是一名优秀的程序员,十分优秀!