我很难在地图上显示特定项目。当用户单击一个点时,我想在顶部放置一个带有计数器的对象。我正在考虑使用文本视图并将其转换为可绘制对象,使用此方法但它不起作用。我尝试的看起来像这样:
xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ... >
<TextView
android:id="@+id/object"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableBottom="@drawable/car"
android:text="Human 1,2..." /> <!-- Here should be the counter modified programatically -->
</LinearLayout>
代码:
public boolean onTouchEvent(MotionEvent e, MapView m) {
....
CustomPinPoint custom = new CustomPinPoint(getHuman(), Main.this);
}
private Drawable getHuman() {
Bitmap snapshot = null;
Drawable drawable = null;
LayoutInflater li = Main.this.getLayoutInflater();
View view = li.inflate(R.layout.human, null); //human is the layout
view.setDrawingCacheEnabled(true);
view.setDrawingCacheQuality(View.DRAWING_CACHE_QUALITY_LOW);
try {
snapshot = Bitmap
.createBitmap(view.getDrawingCache());
drawable = new BitmapDrawable(snapshot);
} finally {
view.setDrawingCacheEnabled(false);
}
return drawable;
}
目前,我在Bitmap.createBitmap(view.getDrawingCache());
. 尝试了维度,仍然没有成功。有人可以告诉我我做错了什么吗?或者如果有另一种从文本视图中获取可绘制的方法?
在此先感谢,科斯敏。