在我的应用程序中,我试图与 ShareActionProvider 共享 BMP。它不工作。我做错了还是需要将其转换为 PNG(我不想处理文件)。如果是这样,我该怎么做?谢谢。
Bitmap bmp = qrUtil.create(WIFIQRCODE, pref2);
isCodeGenerated = true;
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/png");
intent.putExtra(Intent.EXTRA_STREAM, bmp);
provider.setShareIntent(intent);