我有一个带有大图像背景的 ImageButton。我希望能够在该按钮中设置一个映射区域,因此我可以控制将调用该按钮的 onClick 方法的区域。
换句话说,我需要的是类似于 HTML 的“地图”标签(http://www.w3schools.com/tags/tag_map.asp):
<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap" />
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun" />
<area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury" />
<area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus" />
</map>
有没有办法在Android上做到这一点?
先感谢您!