我现在想用shape标签画一个叉号,但是指定android:shape="line"
之后没有发现那个属性是指定画的线的起始和结束位置的。
我用下面的代码画出来的线只能是水平的:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke android:color="@android:color/holo_blue_light"
android:width="3dip" />
</shape>
这个问题怎么整啊?还是shape无法指定这种效果的?
阿神2017-04-17 16:25:22
<rotate
android:fromDegrees="45"
android:toDegrees="135"
>
<shape android:shape="rectangle">
<size
android:width="200dp"
android:height="1dp"
/>
<solid android:color="@color/black"/>
</shape>
</rotate>
不知道什麼是製定line的長度和起始位置, 角度還是可以的