CSV文件无法从通知中打开的任何应用程序

问题描述

我要从我的应用程序与任何支持CSV查看的应用程序创建的通知水龙头(等待中)打开CSV文件在这种情况下,我正在使用Microsoft Excel。我将文件保存在外部存储的“下载”文件夹中。该文件是可见的,并且可以从任何其他文件管理器应用程序打开,但是当我尝试从通知中打开文件时,某些应用程序崩溃或显示“尝试将文件保存在设备上然后再打开”(Microsoft Excel)。所以我的问题是,如果文件管理器应用程序可以使用同一应用程序打开文件,为什么我的应用程序无法使用该应用程序打开文件。这是我正在使用的代码


public void showNotifications(Context context,String title,String description,String mime,File file){

        PendingIntent pendingIntent = null;
        try {
            Uri uri = Uri.parse(file.getPath()); //Tried both file.getAbsolutePath(),getCanonicalPath() too
            Intent intent =  new Intent(Intent.ACTION_VIEW);
            intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
            intent.setDataAndType(uri,mime); //using "text/csv" as mime
            pendingIntent = PendingIntent.getActivity(context,intent,PendingIntent.FLAG_CANCEL_CURRENT);
        }catch (Exception e){
            e.printstacktrace();
        }

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            int importance = notificationmanager.IMPORTANCE_DEFAULT;
            NotificationChannel channel = new NotificationChannel("1","bla bla bla",importance);
            notificationmanager notificationmanager = context.getSystemService(notificationmanager.class);
            notificationmanager.createNotificationChannel(channel);
        }

        NotificationCompat.Builder builder = new NotificationCompat.Builder(context,"1")
                .setSmallIcon(R.drawable.ic_outline_arrow_circle_down_24)
                .setContentTitle(title)
                .setContentText(description)
                .setAutoCancel(true)
                .setContentIntent(pendingIntent)
                .setPriority(NotificationCompat.PRIORITY_DEFAULT);

        notificationmanagerCompat notificationmanager = notificationmanagerCompat.from(context);
        notificationmanager.notify(1,builder.build());
}

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)