android中的位图问题

时间:2011-06-19 15:50:24

标签: android stream bitmap

我正在阅读.png文件夹中的assets图片,如下所示:

 InputStream stream=getApplicationContext().getAssets().open(imagepath);

然后我做了类似的事情:

try{
    stream=getApplicationContext().getAssets().open(imagepath);

    Bitmap bitmap = BitmapFactory.decodeStream(stream, null, null);

    stream.close();
    mark=new BitmapDrawable(bitmap);
    mark.setBounds(0, 0, mark.getIntrinsicWidth(),
            mark.getIntrinsicHeight());
        }
        catch(Exception e)
        {
            e.printStackTrace();
        }

接下来在我目前的位置,我使用此mark作为叠加层,问题是我的当前位置显示在地图上但没有overlay

我解码它的方式有问题吗? ????

0 个答案:

没有答案