我是Android新手,我只是想根据数据库中的XY坐标在2D地图(而不是Google地图)上表示点。当我点击一个特定的点时,我需要在其上显示文字。
答案 0 :(得分:0)
使用:canvas.drawPoint(float x,float y,Paint paint)方法。初始化一个新的Paint对象,并设置颜色和大小等。
如果要添加文本,请使用drawPosText(char [] text,int index,int count,float [] pos,Paint paint)方法。
有关如何使用canvas的信息,请参阅此文章:http://developer.android.com/guide/topics/graphics/2d-graphics.html