我想用一些指向某物的指针画一些椭圆形的东西。如何通过 Android 中的形状实现它?
问问题
472 次
1 回答
0
如果我要做这样的事情,我会使用 IDE 提供的 9patch 绘图工具。但是,在 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="100dp" />
<solid android:color="#5EB888" />
<corners android:radius="0dp"/>
</shape>
</item>
<!-- default color for item at the top 5EB888 -->
<item
android:top="-40dp"
android:bottom="65dp"
android:right="-30dp">
<rotate
android:fromDegrees="45">
<shape android:shape="rectangle">
<solid android:color="#ffffff" />
</shape>
</rotate>
</item>
<item
android:top="65dp"
android:bottom="-40dp"
android:right="-30dp">
<rotate
android:fromDegrees="-45">
<shape android:shape="rectangle">
<solid android:color="#ffffff" />
</shape>
</rotate>
</item>
</layer-list>
只需将此可绘制对象用作小部件的背景,您将获得一个尖头矩形。在您的情况下,您需要一个椭圆形。您可以根据自己的喜好切换形状和调整大小。希望这可以帮助。将此代码应用于按钮小部件后,您使用此代码获得的结果如下所示:
更多关于 ListLayer xml 元素的信息
于 2014-10-08T12:26:40.627 回答