码迷,mamicode.com
首页 > 移动开发 > 详细

Androidpdf

时间:2018-07-19 12:00:29      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:not   直接   ide   idp   fine   led   res   下载到本地   打开   

https://www.jb51.net/article/110238.htm

https://blog.csdn.net/u010046908/article/details/53927157

<!-- User defined. 用户自定义的广播接收器 -->
<receiver
    android:name=".notificationbar.MessageReceiver"
    android:enabled="true">
    <intent-filter>
        <!-- Required 用户注册SDK的intent -->
<action android:name="cn.jpush.android.intent.REGISTRATION" />
        <!-- Required 用户接收SDK消息的intent -->
<action android:name="cn.jpush.android.intent.MESSAGE_RECEIVED" />
        <!-- Required 用户接收SDK通知栏信息的intent -->
<action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED" />
        <!-- Required 用户打开自定义通知栏的intent -->
<action android:name="cn.jpush.android.intent.NOTIFICATION_OPENED" />
        <!-- 接收网络变化 连接/断开 since 1.6.3 -->
<action android:name="cn.jpush.android.intent.CONNECTION" />

        <category android:name="hz.resfine.helpme_repair" />
    </intent-filter>
</receiver>

1.基本思路:

打开网络pdf 思路整体还是来源与图片的加载。

android中加载网络图片的框架有很多个。如image-laoder, fresco、glide等,首先都是从内存中找图片,如果内存中没有,接着从本地找,本地没有在从网络下载。

android中加载pdf也是类似,首先从本地找pdf文件,如果本地存在该pdf文件,直接打开,如果本地不存在,将该pdf文件下载到本地在打开。

下载文件用到了retrofit2的库,已经封装到android_pdf中了。

Androidpdf

标签:not   直接   ide   idp   fine   led   res   下载到本地   打开   

原文地址:https://www.cnblogs.com/wcLT/p/9334815.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!