我有一个Google Map Android应用程序,我试图将整个视图的屏幕截图与地图一起捕获。屏幕截图已拍摄,但Google Map仅有带有Google标志的全黑。我使用以下代码:
private void captureScreen() {
View v = getWindow().getDecorView().getRootView();
v.setDrawingCacheEnabled(true);
Bitmap bmp = Bitmap.createBitmap(v.getDrawingCache());
v.setDrawingCacheEnabled(false);
try {
FileOutputStream fos = new FileOutputStream(new File(Environment
.getExternalStorageDirectory().toString(), "SCREEN"
+ System.currentTimeMillis() + ".png"));
bmp.compress(Bitmap.CompressFormat.PNG, 100, fos);
fos.flush();
fos.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/mapLayout">
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
tools:context="net.aratos.adc.MapActivity"
android:layout_height="0dp"
android:layout_weight="0.8"/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="0.1"
android:layout_gravity="center_horizontal">
<Button
android:gravity="center"
android:id="@+id/loadDateButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Load date" />
<Button
android:gravity="center"
android:id="@+id/snapshotButton"
android:text="Snapshot"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:gravity="center"
android:id="@+id/exportButton"
android:text="Export PDF"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
<GridView
android:orientation="horizontal"
android:id="@+id/boundsLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:numColumns="auto_fit">
</GridView>
</LinearLayout>
我还附上了布局代码。 输出屏幕截图如下 image
尝试使用Brijesh的代码后,我得到以下output
答案 0 :(得分:0)
您可以使用GoogleMap.snapshot方法拍摄地图快照(documentation)
您将需要实现
管理拍摄的快照。
此外,根据文档,请考虑到这一点:
注意: 地图的图像不得传输到您的服务器,或者 否则在应用程序之外使用。如果您需要发送地图 给另一个应用程序或用户,发送数据以使他们能够 为新用户而不是快照重建地图。
答案 1 :(得分:0)
以下代码将为您提供帮助
googleMap.snapshot(new GoogleMap.SnapshotReadyCallback() {
@Override
public void onSnapshotReady(Bitmap bitmap) {
try {
FileOutputStream fos = new FileOutputStream(new File(Environment
.getExternalStorageDirectory().toString(), "SCREEN"
+ System.currentTimeMillis() + ".png"));
bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos);
fos.flush();
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
});
要捕获整个屏幕 尝试关注
googleMap.snapshot(new GoogleMap.SnapshotReadyCallback() {
@Override
public void onSnapshotReady(Bitmap snapshot) {
try {
getWindow().getDecorView().findViewById(android.R.id.content).setDrawingCacheEnabled(true);
Bitmap backBitmap = getWindow().getDecorView().findViewById(android.R.id.content).getDrawingCache();
Bitmap bmOverlay = Bitmap.createBitmap(
backBitmap.getWidth(), backBitmap.getHeight(),
backBitmap.getConfig());
Canvas canvas = new Canvas(bmOverlay);
canvas.drawBitmap(snapshot, new Matrix(), null);
canvas.drawBitmap(backBitmap, 0, 0, null);
try {
FileOutputStream fos = new FileOutputStream(new File(Environment
.getExternalStorageDirectory().toString(), "SCREEN"
+ System.currentTimeMillis() + ".png"));
// Write the string to the file
bmOverlay.compress(Bitmap.CompressFormat.JPEG, 90, fos);
fos.flush();
fos.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
Log.d("ImageCapture", "FileNotFoundException");
Log.d("ImageCapture", e.getMessage());
} catch (IOException e) {
// TODO Auto-generated catch block
Log.d("ImageCapture", "IOException");
Log.d("ImageCapture", e.getMessage());
}
} catch (Exception e) {
e.printStackTrace();
}
}
});
答案 2 :(得分:0)
public class Sample {
public static void main(String[] args) {
String s="a";
String s1="b";
String s2=s+s1;
String s3="ab";
System.out.println(s2==s3);
}
}
请确保使用 android.graphics.Matrix ,而不要使用 android.opengl.Matrix
希望有帮助。