美文网首页
Android开发之分享功能(一)

Android开发之分享功能(一)

作者: g000t | 来源:发表于2016-08-17 15:40 被阅读0次

    1.实现系统自带的分享功能

    • 使用android系统提供的分享功能:
      点击分享按钮,系统会自动获取手机内提供分享功能的App。

    只安装了微信的手机

    只有微信存在
    新安装了新浪微博的手机
    微信和微博同时存在
    • 代码实现
        Intent intent = new Intent(Intent.ACTION_SEND);
        intent.setType("image/*);
        intent.putExtra(Intent.EXTRA_SUBJECT,"share");
        intent.putExtra(Intent.EXTRA_TEXT,"successfully");
        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        startActivity(Intent.createChooser(intent,getTitle()));
    
    • 阅读源码了解含义
    Intent.ACTION_SEND
    

    Activity Action: Deliver some data to someone else. Who the data is being delivered to is not specified; it is up to the receiver of this action to ask the user where the data should be sent.
    When launching a SEND intent, you should usually wrap it in a chooser (through createChooser(Intent, CharSequence)), which will give the proper interface for the user to pick how to send your data and allow you to specify a prompt indicating what they are doing.
    Input: getType() is the MIME type of the data being sent. get*Extra can have either a EXTRA_TEXT or EXTRA_STREAM field, containing the data to be sent. If using EXTRA_TEXT, the MIME type should be "text/plain"; otherwise it should be the MIME type of the data in EXTRA_STREAM. Use / if the MIME type is unknown (this will only allow senders that can handle generic data streams). If using EXTRA_TEXT, you can also optionally supply EXTRA_HTML_TEXT for clients to retrieve your text with HTML formatting.
    As of JELLY_BEAN, the data being sent can be supplied through setClipData(ClipData). This allows you to use FLAG_GRANT_READ_URI_PERMISSION when sharing content: URIs and other advanced features of ClipData. If using this approach, you still must supply the same data through the EXTRA_TEXT or EXTRA_STREAM fields described below for compatibility with old applications. If you don't set a ClipData, it will be copied there for you when calling startActivity(Intent).
    Optional standard extras, which may be interpreted by some recipients as appropriate, are: EXTRA_EMAIL, EXTRA_CC, EXTRA_BCC, EXTRA_SUBJECT.
    Output: nothing.
    Constant Value: "android.intent.action.SEND"

    • 阅读源码可知
      系统会找到提供分享接口的程序,并询问用户把这些数据要分享到哪里。
      分享文字时调用:
    intent.setType("text/plain");
    intent.putExtra(Intent.EXTRA_TEXT,"分享的内容");
    

    分享单张图片时调用:

    String imagePath = Environment.getExternalStorageDirectory()+File.separator+"test.jpg";
    //得到文件的uri
    Uri imageUri = Uri.fromFile(new File(imagePath));
    //用Intent.ACTION_SEND 创建intent对象
    intent.setType("image/*");
    intent.putExtra(Intent.EXTRA_STREAM,imageUri);
    
    • 分享文字时向外发送纯文本类型:EXTRA_TEXT
    • 分享图片或者文件时向外发送Uri:EXTRA_STREAM

    什么是URI?:

    URI百度百科

    在电脑术语中,统一资源标识符(Uniform Resource Identifier,或URI)是一个用于标识某一互联网资源名称的字符串。 该种标识允许用户对任何(包括本地和互联网)的资源通过特定的协议进行交互操作。URI由包括确定语法和相关协议的方案所定义。
    Web上可用的每种资源 -HTML文档、图像、视频片段、程序等 - 由一个通用资源标识符(Uniform Resource Identifier, 简称"URI")
    进行定位。

    startActivity(Intent.createChooser(intent,getTitle()));
    

    上面这句代码创建了一个Chooser

    什么是Chooser?

    这里的Intent.createChooser 实际上是创建一个ACTION_CHOOSER
    在要分享数据时,会打开一个dialog,让用户去选择要分享到哪个app。

    分享功能的实质—app之间的交互

    通过Intent来发送一些请求,调用相关的应用来处理这些请求,那么相关的应用是怎么知道我们要给它传递数据呢?

    • 首先我们来详细的来了解这种app之间交互的Intent
      我们称这种Intent为隐式的Intent,隐式的Intent需要我们声明一个ACTION,�ACTION中定义了我们想要处理的请求,
      设置我们要分享数据的type也很重要,如果没有设置type ,或者设置的不正确,会导致程序崩溃,比如我们要分享一张图片,要是没有Intent.setType(),那么要是选择了地图APP,我们的程序就会崩溃,所以要设置合理的type,提高程序的质量。
      回到最初的问题,我们要分享到的App,比如微博,微博要为其他的程序组件的请求提供服务,那么微博就需要注册一个(或者多个),Intent处理者,在组件的manifest节点添加一个intent-filter
      intent-filter节点里使用下面的标签(关联属性),就可以执行组件支持的动作,种类和数据:
      <Intent-filter>元素中可以包括子元素<action>例如
    <intent-filter>
    <action android:name="com.example.project"/>
    <action android:name="com.example.project"/>
    
    • action使用 android:name 特性来指定对响应的动作名。动作名必须是独一无二的字符串,所以,一个好的习惯是使用基于 Java 包的命名方式的命名系统。

    • category使用 android:category 属性用来指定在什么样的环境下动作才被响应。每个 Intent Filter 标签可以包含多个 category 标签。你可以指定自定义的种类或使用 Android 提供的标准值,如下所示:

    • ALTERNATIVE你将在这章的后面所看到的,一个 Intent Filter 的用途是使用动作来帮忙填入上下文菜单。 ALTERNATIVE 种类指定,在某种数据类型的项目上可以替代默认执行的动作。例如,一个联系人的默认动作时浏览它,替代的可能是去编辑或删除它

    • SELECTED_ALTERNATIVE与 ALTERNATIVE 类似,但 ALTERNATIVE 总是使用下面所述的 Intent 解析来指向单一的动作。SELECTED_ALTERNATIVE在需要一个可能性列表时使用。

    • BROWSABLE指定在浏览器中的动作。当 Intent 在浏览器中被引发,都会被指定成 BROWSABLE 种类。

    • DEFAULT设置这个种类来让组件成为 Intent Filter 中定义的 data 的默认动作。这对使用显式 Intent 启动的 Activity 来说也是必要的。

    • GADGET通过设置 GADGET 种类,你可以指定这个 Activity 可以嵌入到其他的 Activity 来允许。

    • HOMEHOME Activity 是设备启动(登陆屏幕)时显示的第一个 Activity 。通过指定 Intent Filter 为 HOME 种类而不指定动作的话,你正在将其设为本地 home 画面的替代。

    • LAUNCHER使用这个种类来让一个 Activity 作为应用程序的启动项。

    • datadata 标签允许你指定组件能作用的数据的匹配;如果你的组件能处理多个的话,你可以包含多个条件。你可以使用下面属性的任意组合来指定组件支持的数据:

    • android:host指定一个有效的主机名(例如, com.google )。

    • android:mimetype允许你设定组件能处理的数据类型。例如,<type android:value=”vnd.android.cursor.dir/*”/>能匹配任何 Android 游标。

    • android:path有效地 URI 路径值(例如, /transport/boats/ )

    • android:port特定主机上的有效端口。

    • android:scheme需要一个特殊的图示(例如, content 或 http )。

    所以在微博等APP 中要设置相应的intent-filter,能分享什么数据,那么就提供相应的标签去接收某种数据类型的数据。

    我们自己的app就负责,设置好类型type 然后把它发送出去就行了。

    相关文章

      网友评论

          本文标题: Android开发之分享功能(一)

          本文链接:https://www.haomeiwen.com/subject/ktdmsttx.html