我正在尝试将卡片视图转换为图像并通过什么应用程序共享它。我正在使用文件提供程序,因为测试设备的版本更高。
所以当我试图创建一个文件时,它给了我一个例外
e = {IllegalArgumentException@7727} "java.lang.IllegalArgumentException: Failed to find configured root that contains /com.example.onboardingversion2/images/card_image"
mCardFile = {File@7701} "com.example.onboardingversion2/images/card_image"
对于代码:
public void createFile() {
FileOutputStream outputStream = null;
try {
File imagePath = new File(getActivity().getPackageName(), "images");
mCardFile = new File(imagePath, "card_image");
Uri contentUri = getUriForFile(getContext(), getActivity().getPackageName() + ".provider", mCardFile);
sendCard(contentUri);
} catch (Exception e) {
e.printStackTrace();
}
}
当我使用 getFilesDir() 使用下面的代码时,它只会进入应用程序意图,当我尝试共享时没有显示图像。
File imagePath = new File(getActivity().getFilesDir(), "images");
mCardFile = new File(imagePath, "card_image");
Uri contentUri = getUriForFile(getContext(), getActivity().getPackageName() + ".provider", mCardFile);
sendCard(contentUri);
xml文件
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<files-path name="my_images" path="images/"/>
</paths>
显现
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths" />
</provider>
将视图转换为位图
public Bitmap viewToBitmap(final View view) {
cardView.post(new Runnable() {
@Override
public void run() {
mBitmap = Bitmap.createBitmap(view.getWidth(), view.getHeight(), Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(mBitmap);
view.draw(canvas);
createFile();
}
});
return mBitmap;
}
分享代码:
public void sendCard(Uri contentUri)
{
Intent whatsappIntent = new Intent(Intent.ACTION_SEND);
whatsappIntent.setType("text/plain");
whatsappIntent.setPackage("com.whatsapp");
whatsappIntent.putExtra(Intent.EXTRA_TEXT, "The text you wanted to share");
whatsappIntent.putExtra(Intent.EXTRA_STREAM, contentUri);
whatsappIntent.setType("image/jpeg");
whatsappIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
try {
getActivity().startActivity(whatsappIntent);
} catch (android.content.ActivityNotFoundException ex) {
Utils.showDialog(getActivity(),"Whats App have not been installed.");
}
}
我有一个卡片视图,我正在尝试将其创建为位图并将位图转换为图像文件并使用共享意图进行共享。
我哪里错了?视图是否无法转换为图像?
请帮忙。谢谢你。