从布局中获取绘图不起作用

时间:2012-10-07 17:37:12

标签: android google-maps drawable

我很难在地图上显示特定项目。 当用户点击一个点时,我想放置一个带有计数器的对象。 我正在考虑使用文本视图并使用this method将其转换为drawable,但它不起作用。 我尝试的是这样的:
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());获得空指针。尝试尺寸,仍然没有成功。有人能告诉我我做错了什么吗?或者,如果有另一种方法可以从文本视图中获取可绘制的内容?
提前致谢,Cosmin。

1 个答案:

答案 0 :(得分:0)

你的问题不是很明确......

如果您想要将对象始终放在同一个地方,并且您希望独立于用户触摸地图的位置显示它,请将该对象添加到您拥有地图视图的同一布局中,如我在此答案中所示Animated Menu Buttons on top of MapView然后使其可见/不可见,并根据需要更改计数器。

如果您想要其他内容,请在问题中添加更多信息。

祝你好运。