嗨我想繪製兩個水平放置的文本視圖之間略微彎曲的分隔線。我不想在背景中放置任何類型的圖像。我曾嘗試使用XML繪製,但我的代碼不起作用。如何創建矩形背景,從一側稍微彎曲
<?xml version="1.0" encoding="UTF-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape android:shape="rectangle">
<size
android:width="100dp"
android:height="40dp" />
<solid android:color="#ff0000" />
</shape>
</item>
<item
android:right="100dp"
android:left="-180dp"
android:top="-25dp"
android:bottom="-42dp">
<rotate
android:fromDegrees="15">
<shape android:shape="rectangle">
<solid android:color="#ffffff" />
</shape>
</rotate>
</item>
我想設計的圖像顯示的佈局。
檢查我編輯的答案 –
@ AdityaVyas-Lakhan謝謝,它爲我工作 –