保存级别屏幕截图并上传到LIBGDX中的Google+

时间:2015-06-04 11:09:00

标签: android-activity libgdx google-play-services scene2d

当处于FINISHED-LEVEL模式时,我在PNG中打印我的游戏画面并将其保存到文件中( saveScreenshotNamePath )。然后,我想使用 shareGoogleImage 将该级别的图片上传到Google+。我只用文本测试了共享功能,它可以工作,但我遇到了图像共享部分的问题。

在出现的Google上传对话框中无法看到打印屏幕,我只看到标题文字;显然图像没有附加。这可能是什么问题?

以下是代码:

这会将打印屏幕保存到文件中:

public static String saveScreenshotNamePath(String name){
    try{
        FileHandle fh;
        do{
            fh = new FileHandle(name + ".png");
        }while (fh.exists());
        Pixmap pixmap = getScreenshot(0, 0, Gdx.graphics.getWidth(), Gdx.graphics.getHeight(), false);
        PixmapIO.writePNG(fh, pixmap);
        pixmap.dispose();
        return fh.file().getAbsolutePath();
    }catch (Exception e){
        return "";
    }        
}

这启动了意图:

@Override
public void shareGoogleImage(int no_level, String path) {
    try { Thread.sleep(2000); } catch (InterruptedException e) { e.printStackTrace(); }
    Intent share = new PlusShare.Builder(this)
        .setText("See my latest Game Level " + Integer.toString(no_level) + " score")
        .setType("image/png")
        .setStream(Uri.parse(path)).getIntent();
    startActivityForResult(share, 0);
}

我也尝试了 MediaStore 变体,但结果相同:

@Override
public void shareGoogleImage(int no_level, String path) {
    File tmpFile = new File(path);
    String photoUri = "";
    try {
        photoUri = MediaStore.Images.Media.insertImage(getContentResolver(), tmpFile.getAbsolutePath(), null, null); 
    } catch (FileNotFoundException e1) { e1.printStackTrace(); }

    try { Thread.sleep(2000); } catch (InterruptedException e) { e.printStackTrace(); }
    Intent share = new PlusShare.Builder(this)
        .setText("See my latest Game Level " + Integer.toString(no_level) + " score")
        .setType("image/png")
        .setStream(Uri.parse(photoUri))
        .getIntent();
    startActivityForResult(share, 0);
}

这是位于AndroidLauncher.java(活动文件)中的 shareGoogleImage 功能的游戏界面中的游戏内(核心文件)触发器(Scene2D ImageButton按):

ShareGoogleButton.addListener( new ClickListener() {
@Override
public void clicked(InputEvent event, float x, float y){
    if(!share_pressed){ 
        share_pressed = true;
        ShareGoogleButton.clearActions();
        ShareGoogleButton.addAction(sequence(moveBy(0f, 12f, 0.1f), moveBy(0f, -12f, 0.2f), run(new Runnable(){
            public void run(){  
                String pathto_screencap = ScreenshotFactory.saveScreenshotNamePath("google_share_image");
                game.google_facebook_services.shareGoogleImage(level_no, pathto_screencap);
                share_pressed = false;
            }
        })));                   
        }
    }
});

1 个答案:

答案 0 :(得分:2)

这里至少存在两个问题:无限循环和绝对文件路径。由于您将它包装在一个没有有用日志记录的全部catch块中,因此您无法获取任何日志消息来帮助您进行调试。

这是第一次调用方法后的无限循环,因为文件将存在(假设它已成功写入)。不知道你为什么这么做。

do{
    fh = new FileHandle(name + ".png");
}while (fh.exists());

无论如何,如果您希望将其与其他应用程序(如G +)共享,则需要将其保存到外部目录(不是绝对目录),因此请将其替换为:

fh = Gdx.files.external(name + ".png");

您还需要清单中的write-external-storage权限:

<manifest ...>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    ...
</manifest>