我可以使用以下代码为Viber分享贴纸。但是在分享贴纸背景变成黑色之后。我的贴纸是透明的。请帮助我。
我的屏幕短图片链接enter link description here
Here is my source code:
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.setType("image/png");
sharingIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///sdcard/sticker_demo/" +transparentstickerpath));
startActivity(Intent.createChooser(sharingIntent, "Share via"));