我正在阅读.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
。
我解码它的方式有问题吗? ????