我想使用Google Map v2快照填充ImageView。
简短总结:
我是否仍需要膨胀Maps XML示例?
我需要使用“Map”片段吗?
我是否希望以编程方式创建“Map”示例并只拍摄快照?
我的想法是通过编程创建一个Maps示例,适当地调整它的大小(比如200 x200),然后拍摄快照。但是,我的快照例程总是崩溃,并显示**“Bitmap must be〉0 in height and width”**。
这是错误的方法吗?
XML应该是这样的:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:orientation="vertical" >
<ImageView android:id="@+id/location_card_map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="Location"
android:clickable="true"/>
</LinearLayout>
Map类别:
private ManagerMaps(Context context)
{
mContext = context;
mSharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
initializeMaps();
}
...
private void initializeMaps()
{
LinearLayout layout = new LinearLayout(mContext);
layout.setOrientation(LinearLayout.HORIZONTAL);
layout.setLayoutParams(new LinearLayout.LayoutParams(200,200));//(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
GoogleMapOptions options = new GoogleMapOptions();
options.camera(new CameraPosition(new LatLng(0, 0), 1, 0, 0));
// Create the MapView programmatically
mMapView = new MapView(mContext, options);
layout.addView(mMapView);
mMapView.setLayoutParams(new LayoutParams(200,200));
mMapView.onCreate(null);
mMapView.onResume();
// setContentView(layout);
// Gets to GoogleMap from the MapView and does initialization stuff
mMap = mMapView.getMap();
if(mMap == null)
{
Log.d("AppDebug", "MAP IS NULL ********");
return;
}
mMap.getUiSettings().setMyLocationButtonEnabled(true);
mMap.setMyLocationEnabled(true);
// Needs to call MapsInitializer before doing any CameraUpdateFactory calls
try {
MapsInitializer.initialize(mContext);
} catch (GooglePlayServicesNotAvailableException e) {
e.printStackTrace();
}
}
public void captureMapScreen()
{
SnapshotReadyCallback callback = new SnapshotReadyCallback() {
@Override
public void onSnapshotReady(Bitmap snapshot) {
try {
FileOutputStream out = new FileOutputStream(
Environment.getExternalStorageDirectory()
+ "/MapScreenShot"
+ System.currentTimeMillis() + ".png");
snapshot.compress(Bitmap.CompressFormat.PNG, 90, out);
} catch (Exception e) {
e.printStackTrace();
}
}
};
mMap.snapshot(callback); // crashes in bitmap thread here with height/width zero
}
调用方法:
ManagerMaps maps = ManagerMaps.getInstance(getActivity());
maps.captureMapScreen();
编辑:
崩溃发生在:mMap.snapshot(回调);
日志类别
10-22 01:36:44.300: E/AndroidRuntime(29292): FATAL EXCEPTION: Thread-3366
10-22 01:36:44.300: E/AndroidRuntime(29292): java.lang.IllegalArgumentException: width and height must be > 0
10-22 01:36:44.300: E/AndroidRuntime(29292): at android.graphics.Bitmap.createBitmap(Bitmap.java:695)
10-22 01:36:44.300: E/AndroidRuntime(29292): at android.graphics.Bitmap.createBitmap(Bitmap.java:674)
10-22 01:36:44.300: E/AndroidRuntime(29292): at android.graphics.Bitmap.createBitmap(Bitmap.java:641)
10-22 01:36:44.300: E/AndroidRuntime(29292): at maps.ag.ca.a(Unknown Source)
10-22 01:36:44.300: E/AndroidRuntime(29292): at maps.ag.av.run(Unknown Source)
10-22 01:36:44.300: E/AndroidRuntime(29292): at java.lang.Thread.run(Thread.java:841)
2条答案
按热度按时间ilmyapht1#
谷歌Map(在2022年)仍然抛出一个无意义的createBitmap(),而不是一些错误,如“Map视图大小0,请推迟快照,直到布局后...”
我通过延迟快照,直到布局发生并且通过onMapReady设置Map后,才解决了我这边的问题:
oprakyz72#
这个问题是由Android中可绘制资源的自动缩放和非常小的可绘制资源的不幸组合引起的。
例如,如果您的应用只提供drawable-xhpdi资源,则需要缩小这些资源以适应低密度屏幕。如果您自己不提供这些资源,Android会自动执行此操作。
显示密度的比例设置如下:
x高分辨率:2.0高分辨率:1.5百万像素/英寸:1.0百万像素/英寸:0.75
有时很遗憾,当以xhdpi格式提供这些资源并将其缩小时,像素大小可能会被截断为0。对此没有任何保护措施,Android将无法创建具有该尺寸的位图,并崩溃显示
IllegalArgumentException: width and height must be > 0
但我不确定你的情况。所以请更新您的问题与日志猫。
更新它lyk:
使用
snapshot.compress(Bitmap.CompressFormat.PNG, 90, out);
获取Map截图并避免代码