欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android自带API实现分享功能

时间:2021-02-14 11:30:39|栏目:Android代码|点击:

前言

在做项目的过程中需要实现文字和图片的分享,有两种方式:
1. 使用android sdk中自带的Intent.ACTION_SEND实现分享。
2. 使用shareSDK、友盟等第三方的服务。
鉴于使用的方便,此次只介绍使用Android sdk中自带的方式来实现分享的功能。

分享文字

/** 
   * 分享文字内容 
   * 
   * @param dlgTitle 
   *      分享对话框标题 
   * @param subject 
   *      主题 
   * @param content 
   *      分享内容(文字) 
   */ 
private void shareText(String dlgTitle, String subject, String content) { 
    if (content == null || "".equals(content)) { 
      return; 
    } 
    Intent intent = new Intent(Intent.ACTION_SEND); 
    intent.setType("text/plain"); 
    if (subject != null && !"".equals(subject)) { 
      intent.putExtra(Intent.EXTRA_SUBJECT, subject); 
    } 

    intent.putExtra(Intent.EXTRA_TEXT, content); 

    // 设置弹出框标题 
    if (dlgTitle != null && !"".equals(dlgTitle)) { // 自定义标题 
      startActivity(Intent.createChooser(intent, dlgTitle)); 
    } else { // 系统默认标题 
      startActivity(intent); 
    } 
  } 

分享单张图片

/** 
   * 分享图片和文字内容 
   * 
   * @param dlgTitle 
   *      分享对话框标题 
   * @param subject 
   *      主题 
   * @param content 
   *      分享内容(文字) 
   * @param uri 
   *      图片资源URI 
   */ 
  private void shareImg(String dlgTitle, String subject, String content, 
      Uri uri) { 
    if (uri == null) { 
      return; 
    } 
    Intent intent = new Intent(Intent.ACTION_SEND); 
    intent.setType("image/*"); 
    intent.putExtra(Intent.EXTRA_STREAM, uri); 
    if (subject != null && !"".equals(subject)) { 
      intent.putExtra(Intent.EXTRA_SUBJECT, subject); 
    } 
    if (content != null && !"".equals(content)) { 
      intent.putExtra(Intent.EXTRA_TEXT, content); 
    } 

    // 设置弹出框标题 
    if (dlgTitle != null && !"".equals(dlgTitle)) { // 自定义标题 
      startActivity(Intent.createChooser(intent, dlgTitle)); 
    } else { // 系统默认标题 
      startActivity(intent); 
    } 
  } 

分享多张图片

//分享多张图片 
  public void shareMultipleImage(View view) { 
    ArrayList<Uri> uriList = new ArrayList<>(); 

    String path = Environment.getExternalStorageDirectory() + File.separator; 
    uriList.add(Uri.fromFile(new File(path+"australia_1.jpg"))); 
    uriList.add(Uri.fromFile(new File(path+"australia_2.jpg"))); 
    uriList.add(Uri.fromFile(new File(path+"australia_3.jpg"))); 

    Intent shareIntent = new Intent(); 
    shareIntent.setAction(Intent.ACTION_SEND_MULTIPLE); 
    shareIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uriList); 
    shareIntent.setType("image/*"); 
    startActivity(Intent.createChooser(shareIntent, "分享到")); 
  } 

上一篇:Android编程实现自定义ProgressBar样式示例(背景色及一级、二级进度条颜色)

栏    目:Android代码

下一篇:Android实现QQ新用户注册界面遇到问题及解决方法

本文标题:Android自带API实现分享功能

本文地址:http://www.codeinn.net/misctech/62808.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有