android – 使用ACTION_SEND共享文本文件

前端之家收集整理的这篇文章主要介绍了android – 使用ACTION_SEND共享文本文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们可以使用ACTION_SEND打开共享对话框来共享文本
Intent sendIntent = new Intent();
                sendIntent.setAction(Intent.ACTION_SEND);
                sendIntent.putExtra(Intent.EXTRA_TEXT,"Download Link: Android play store link");
                sendIntent.setType("text/plain");
                startActivity(Intent.createChooser(sendIntent,"Share This App"));

如何使用ACTION_SEND共享文本文件.

我读了http://developer.android.com/training/sharing/send.html,但无法获得如何共享文本文件.

解决方法

使用以下行.
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); 
    emailIntent.setType("*/*");
    emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,new String[] {"me@gmail.com"}); 
    emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,"Test Subject"); 
    emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,"go on read the emails");     
    emailIntent.putExtra(Intent.EXTRA_STREAM,Uri.fromfile(new File(yourtextfilepath));
    startActivity(Intent.createChooser(emailIntent,"Send mail..."));

确保文本文件路径应来自外部存储卡.动作发送不接受内部存储器中的文件.

希望这会帮助你.

原文链接:https://www.f2er.com/android/309287.html

猜你在找的Android相关文章