我有一个线条形状,它是一条粗线:
<?xml version="1.0" encoding="utf-8"?>
<rotate
xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="30">
<shape android:shape="line">
<size
android:width="100dp"
android:height="100dp" />
<stroke
android:width="30dp"
android:color="#0000FF" />
</shape>
</rotate>
我想知道有没有办法让这条线的两端四舍五入?
我尝试将其添加到上面<shape>
:
<corners android:radius="10dp"/>
但它对粗线没有任何影响。
答案 0 :(得分:0)
在您的View tag
中添加xml
代表该行的内容。根据线的不同厚度调整高度。
<View
android:layout_width="100dp"
android:layout_height="10dp"
android:background="@drawable/test"/>
然后为您添加常用的背景
的test.xml
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#000000" />
<corners android:radius="8dip" />
</shape>
这首先给了我没有开始标记发现错误但是在清理并重建它产生了所需的输出。试试吧。希望这可以帮助。