[文章]HarmonyOS教程—基于跨设备迁移和分布式文件能力,实现邮件的跨设备编辑和附件的调用

阅读量0
0
1
1. 介绍      
当前,在不同的设备上迁移一个任务的操作通常十分复杂,比如路上在手机里写了一半的邮件,回到家想切换到平板电脑更方便的处理;或者有时需要调用不同设备中的文档或图片素材,此时需要在不同设备间反复操作。

想要解决这些问题,我们可以通过HarmonyOS的分布式能力实现任务的跨设备迁移,保证业务在手机、平板等终端间无缝衔接,轻松的完成多设备之间的协同办公。本篇Codelab文档,我们通过模拟不同设备间协同的邮件编辑来做一个简单的演示,如下图,我们可以通过迁移按钮完成任务的跨设备迁移,并通过附件按钮调用跨设备的图片。

图1-1 设备A完成邮件编写并选择附件,流转到另一设备

图1-2 设备B弹出邮件界面,可继续完成邮件编写

   

2. 搭建HarmonyOS环境      
我们首先需要完成HarmonyOS开发环境搭建,可参照如下步骤进行。
  • 安装DevEco Studio,详情请参考下载和安装软件。
  • 设置DevEco Studio开发环境,DevEco Studio开发环境需要依赖于网络环境,需要连接上网络才能确保工具的正常使用,可以根据如下两种情况来配置开发环境:
    • 如果可以直接访问Internet,只需进行下载HarmonyOS SDK操作。
    • 如果网络不能直接访问Internet,需要通过代理服务器才可以访问,请参考配置开发环境。
  • 开发者可以参考以下链接,完成设备调试的相关配置:
    • 使用真机进行调试
    • 使用模拟器进行调试
你可以通过如下设备完成Codelab:
  • 开启了开发者模式的两部HarmonyOS真机
   

3. 代码结构解读      
本篇Codelab只对核心代码进行讲解,对于完整代码,我们会在11 参考中提供下载方式,首先介绍一下整个工程的代码结构:

  • bean:MailDataBean封装了邮件信息。
  • Slice:MailEditSlice为进入邮件应用的回复页面,同时里面也展现了我们大部分的逻辑实现。
  • ui:迁移设备选择框等功能实现。
  • Utils:存放所有封装好的公共方法,如DeviceUtils、LogUtil等。
  • MainAbility:动态权限的申请以及页面路由信息处理。
  • resources:存放工程使用到的资源文件,其中resourcesbaselayout下存放xml布局文件;resourcesbasemedia下存放图片资源。
  • config.json:配置文件。
   

4. 权限申请      
完成准备工作后,在HUAWEI DevEco Studio里创建项目。
本程序开发需要申请以下6个权限:
  • ohos.permission.GET_DISTRIBUTED_DEVICE_INFO:用于允许获取分布式组网内的设备列表和设备信息。
  • ohos.permission.DISTRIBUTED_DATASYNC:用于允许不同设备间的数据交换。
  • ohos.permission.DISTRIBUTED_DEVICE_STATE_CHANGE:用于允许监听分布式组网内的设备状态变化。
  • ohos.permission.READ_USER_STORAGE:读取存储卡中的内容。
  • ohos.permission.WRITE_USER_STORAGE:修改或删除存储卡中的内容。
  • ohos.permission.GET_BUNDLE_INFO:用于查询其他应用的信息。
在项目配置文件"entrysrcmainconfig.json"中增加以下内容:
  1. "reqPermissions": [
  2.       {
  3.         "name": "ohos.permission.GET_DISTRIBUTED_DEVICE_INFO"
  4.       },
  5.       {
  6.         "name": "ohos.permission.DISTRIBUTED_DATASYNC"
  7.       },
  8.       {
  9.         "name": "ohos.permission.DISTRIBUTED_DEVICE_STATE_CHANGE"
  10.       },
  11.       {
  12.         "name": "ohos.permission.READ_USER_STORAGE"
  13.       },
  14.       {
  15.         "name": "ohos.permission.WRITE_USER_STORAGE"
  16.       },
  17.       {
  18.         "name": "ohos.permission.GET_BUNDLE_INFO"
  19.       }
  20. ]
复制代码
在MainAbility.java的onStart()中增加下面权限申请代码:

  1. String[] permissions = {
  2.     "ohos.permission.READ_USER_STORAGE",
  3.     "ohos.permission.WRITE_USER_STORAGE",
  4.     "ohos.permission.DISTRIBUTED_DATASYNC"
  5. };
  6. List<String> applyPermissions = new ArrayList<>();
  7. for (String element : permissions) {
  8.     LogUtil.info(TAG, "check permission: " + element);
  9.     if (verifySelfPermission(element) != 0) {
  10.         if (canRequestPermission(element)) {
  11.             applyPermissions.add(element);
  12.         } else {
  13.             LogUtil.info(TAG, "user deny permission");
  14.         }
  15.     } else {
  16.         LogUtil.info(TAG, "user granted permission: " + element);
  17.     }
  18. }
  19. requestPermissionsFromUser(applyPermissions.toArray(new String[0]), 0);
复制代码
5. 界面实现
在"slice"文件夹中新建一个MailEditSlice.java用做回复邮件界面,在"resourcesbaselayout"路径下的moudle_mail_edit.xml来定义页面的布局。
moudle_mail_edit.xml内容如下:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <StackLayout
  3.     xmlns:ohos="http://schemas.huawei.com/res/ohos"
  4.     ohos:height="match_parent"
  5.     ohos:width="match_parent">

  6.     <DirectionalLayout
  7.         ohos:height="match_parent"
  8.         ohos:width="match_parent"
  9.         ohos:orientation="vertical">

  10.         <DependentLayout
  11.             ohos:height="60vp"
  12.             ohos:width="match_parent"
  13.             ohos:top_margin="10vp">

  14.             <Text
  15.                 ohos:id="$+id:call_test"
  16.                 ohos:height="match_content"
  17.                 ohos:width="match_content"
  18.                 ohos:horizontal_center="1"
  19.                 ohos:multiple_lines="false"
  20.                 ohos:text="邮件回复"
  21.                 ohos:text_color="#ff000000"
  22.                 ohos:text_size="24fp"
  23.                 ohos:top_margin="3vp"/>

  24.             <Image
  25.                 ohos:id="$+id:mail_edit_continue"
  26.                 ohos:height="50vp"
  27.                 ohos:width="50vp"
  28.                 ohos:align_parent_bottom="1"
  29.                 ohos:align_parent_right="1"
  30.                 ohos:image_src="$media:icon_qianyi"
  31.                 ohos:padding="10vp"
  32.                 ohos:right_margin="10vp"
  33.                 ohos:scale_mode="zoom_center"
  34.                 />
  35.         </DependentLayout>

  36.         <DirectionalLayout
  37.             ohos:id="$+id:mail_edit_center_layout"
  38.             ohos:height="match_parent"
  39.             ohos:width="match_parent"
  40.             ohos:orientation="vertical">

  41.             <DirectionalLayout
  42.                 ohos:height="50vp"
  43.                 ohos:width="match_parent"
  44.                 ohos:layout_alignment="16"
  45.                 ohos:orientation="horizontal">

  46.                 <Text
  47.                     ohos:height="-2"
  48.                     ohos:width="80vp"
  49.                     ohos:layout_alignment="vertical_center"
  50.                     ohos:left_padding="20vp"
  51.                     ohos:text="收件人"
  52.                     ohos:text_alignment="64"
  53.                     ohos:text_color="#ff000000"
  54.                     ohos:text_size="18fp"/>

  55.                 <TextField
  56.                     ohos:id="$+id:mail_edit_receiver"
  57.                     ohos:height="-2"
  58.                     ohos:width="-1"
  59.                     ohos:hint="收件人"
  60.                     ohos:layout_alignment="vertical_center"
  61.                     ohos:multiple_lines="false"
  62.                     ohos:text_alignment="64"
  63.                     ohos:text_color="#99000000"
  64.                     ohos:text_cursor_visible="true"
  65.                     ohos:text_size="14fp"/>
  66.             </DirectionalLayout>

  67.             <DirectionalLayout
  68.                 ohos:height="50vp"
  69.                 ohos:width="match_parent"
  70.                 ohos:layout_alignment="16"
  71.                 ohos:orientation="0">

  72.                 <Text
  73.                     ohos:height="-2"
  74.                     ohos:width="80vp"
  75.                     ohos:layout_alignment="vertical_center"
  76.                     ohos:left_padding="20vp"
  77.                     ohos:text="抄送"
  78.                     ohos:text_alignment="64"
  79.                     ohos:text_color="#ff000000"
  80.                     ohos:text_size="18fp"/>

  81.                 <TextField
  82.                     ohos:id="$+id:mail_edit_cc"
  83.                     ohos:height="-2"
  84.                     ohos:width="-1"
  85.                     ohos:hint="抄送"
  86.                     ohos:layout_alignment="vertical_center"
  87.                     ohos:multiple_lines="false"
  88.                     ohos:text_alignment="64"
  89.                     ohos:text_color="#99000000"
  90.                     ohos:text_size="14fp"/>
  91.             </DirectionalLayout>

  92.             <StackLayout
  93.                 ohos:height="50vp"
  94.                 ohos:width="match_parent">

  95.                 <DirectionalLayout
  96.                     ohos:height="50vp"
  97.                     ohos:width="match_parent"
  98.                     ohos:orientation="horizontal"
  99.                     ohos:right_margin="70vp">

  100.                     <Text
  101.                         ohos:height="-2"
  102.                         ohos:width="80vp"
  103.                         ohos:layout_alignment="vertical_center"
  104.                         ohos:left_padding="20vp"
  105.                         ohos:text="主题"
  106.                         ohos:text_alignment="64"
  107.                         ohos:text_color="#ff000000"
  108.                         ohos:text_size="18fp"/>

  109.                     <TextField
  110.                         ohos:id="$+id:mail_edit_title"
  111.                         ohos:height="-2"
  112.                         ohos:width="-1"
  113.                         ohos:hint="主题"
  114.                         ohos:layout_alignment="vertical_center"
  115.                         ohos:multiple_lines="false"
  116.                         ohos:text_alignment="64"
  117.                         ohos:text_color="#99000000"
  118.                         ohos:text_size="14fp"/>
  119.                 </DirectionalLayout>

  120.                 <Image
  121.                     ohos:id="$+id:open_dir"
  122.                     ohos:height="50vp"
  123.                     ohos:width="50vp"
  124.                     ohos:image_src="$media:icon_fujian"
  125.                     ohos:layout_alignment="right|vertical_center"
  126.                     ohos:padding="16vp"
  127.                     ohos:scale_mode="zoom_center"/>
  128.             </StackLayout>

  129.             <DirectionalLayout
  130.                 ohos:height="match_parent"
  131.                 ohos:width="match_parent"
  132.                 ohos:bottom_margin="70vp"
  133.                 ohos:orientation="vertical">


  134.                 <TextField
  135.                     ohos:id="$+id:mail_edit_content"
  136.                     ohos:height="0vp"
  137.                     ohos:width="match_parent"
  138.                     ohos:hint="邮件正文"
  139.                     ohos:left_padding="20vp"
  140.                     ohos:multiple_lines="true"
  141.                     ohos:right_padding="20vp"
  142.                     ohos:text_alignment="36"
  143.                     ohos:text_color="#99000000"
  144.                     ohos:text_cursor_visible="true"
  145.                     ohos:text_size="14fp"
  146.                     ohos:top_padding="10vp"
  147.                     ohos:weight="1"/>

  148.                 <DirectionalLayout
  149.                     ohos:height="0vp"
  150.                     ohos:width="match_parent"
  151.                     ohos:orientation="vertical"
  152.                     ohos:weight="2">

  153.                     <Text
  154.                         ohos:height="30vp"
  155.                         ohos:width="80vp"
  156.                         ohos:layout_alignment="vertical_center"
  157.                         ohos:left_padding="20vp"
  158.                         ohos:text="附件"
  159.                         ohos:text_alignment="64"
  160.                         ohos:text_size="18fp"/>

  161.                     <ListContainer
  162.                         ohos:id="$+id:attachment_list"
  163.                         ohos:height="100vp"
  164.                         ohos:width="match_parent"
  165.                         ohos:layout_alignment="horizontal_center"
  166.                         ohos:orientation="horizontal"/>
  167.                 </DirectionalLayout>
  168.             </DirectionalLayout>
  169.         </DirectionalLayout>
  170.     </DirectionalLayout>

  171.     <Button
  172.         ohos:height="50vp"
  173.         ohos:width="match_parent"
  174.         ohos:background_element="#236ea1"
  175.         ohos:layout_alignment="bottom"
  176.         ohos:text="发送"
  177.         ohos:text_alignment="center"
  178.         ohos:text_color="#ffffff"
  179.         ohos:text_size="18fp"
  180.         />
  181. </StackLayout>
复制代码
创建bean/MailDataBean.java,用于表示邮件正文数据,代码如下:

  1. public class MailDataBean {
  2.     private static final String ARGS_RECEIVER = "receiver";

  3.     private static final String ARGS_CC = "cc";

  4.     private static final String ARGS_TITLE = "title";

  5.     private static final String ARGS_CONTENT = "content";

  6.     private static final String ARGS_PIC_LIST = "pic_list";

  7.     ...

  8.     /**
  9.      * Constructor
  10.      *
  11.      * [url=home.php?mod=space&uid=3142012]@param[/url] receiver mail receiver
  12.      * @param cc mail cc
  13.      * @param title mail title
  14.      * @param content mail content
  15.      */
  16.     public MailDataBean(String receiver, String cc, String title, String content) {
  17.         super();
  18.         this.receiver = receiver;
  19.         this.cc = cc;
  20.         this.title = title;
  21.         this.content = content;
  22.     }

  23.     /**
  24.      * Constructor with IntentParams
  25.      *
  26.      * @param params IntentParams
  27.      */
  28.     public MailDataBean(IntentParams params) {
  29.         if (params == null) {
  30.             LogUtil.info(this.getClass(), "Invalid intent params, can't create MailDataBean");
  31.             return;
  32.         }

  33.         this.receiver = getStringParam(params, ARGS_RECEIVER);
  34.         this.cc = getStringParam(params, ARGS_CC);
  35.         this.title = getStringParam(params, ARGS_TITLE);
  36.         this.content = getStringParam(params, ARGS_CONTENT);
  37.         this.pictureDataList = (List<PictureData>) params.getParam(ARGS_PIC_LIST);
  38.     }

  39.     private String getStringParam(IntentParams intentParams, String key) {
  40.         Object value = intentParams.getParam(key);
  41.         if ((value != null) && (value instanceof String)) {
  42.             return (String) value;
  43.         }
  44.         return "";
  45.     }

  46.     /**
  47.      * MailDataBean to IntentParams
  48.      *
  49.      * @param params intent params
  50.      */
  51.     public void saveDataToParams(IntentParams params) {
  52.         params.setParam(ARGS_RECEIVER, this.receiver == null ? "" : this.receiver);
  53.         params.setParam(ARGS_CC, this.cc == null ? "" : this.cc);
  54.         params.setParam(ARGS_TITLE, this.title == null ? "" : this.title);
  55.         params.setParam(ARGS_CONTENT, this.content == null ? "" : this.content);
  56.         params.setParam(ARGS_PIC_LIST, this.pictureDataList == null ? null : this.pictureDataList);
  57.     }

  58.     ...
  59. }
复制代码
在MailEditSlice页面中,我们把邮件内容初始化。

  1.     Component view = rootView.findComponentById(ResourceTable.Id_mail_edit_receiver);
  2.     if (view instanceof TextField) {
  3.         receiver = (TextField) view;
  4.     }
  5.     view = rootView.findComponentById(ResourceTable.Id_mail_edit_cc);
  6.     if (view instanceof TextField) {
  7.         cc = (TextField) view;
  8.     }
  9.     view = rootView.findComponentById(ResourceTable.Id_mail_edit_title);
  10.     if (view instanceof TextField) {
  11.         title = (TextField) view;
  12.     }
  13.     doConnectImg = (Image) rootView.findComponentById(ResourceTable.Id_mail_edit_continue);
  14.     view = rootView.findComponentById(ResourceTable.Id_mail_edit_content);
  15.     if (view instanceof TextField) {
  16.         content = (TextField) view;
  17.     }
  18. ...

  19.     mAttachmentContainer = (ListContainer) rootView.findComponentById(ResourceTable.Id_attachment_list);
  20.     mAttachmentProvider = new ListComponentAdapter<String>(

  21.     getContext(), mAttachmentDataList, ResourceTable.Layout_attachment_item_horizontal) {

  22.         @Override
  23.         public void onBindViewHolder(CommentViewHolder commonViewHolder, String item, int position) {
  24.             commonViewHolder.getTextView(ResourceTable.Id_item_title1).setText(item.substring(item.lastIndexOf(File.separator) + 1));
  25.             FileInputStream fileInputStream = null;
  26.             try {
  27.                 fileInputStream = new FileInputStream(item);
  28.                 ImageSource source = ImageSource.create(fileInputStream, null);
  29.                 commonViewHolder.getImageView(ResourceTable.Id_image).setPixelMap(source.createPixelmap(0, null));
  30.             } catch (FileNotFoundException e) {
  31.                 LogUtil.error(TAG, "setAttachmentProvider Error");
  32.             }
  33.         }
  34.     };
  35.     mAttachmentContainer.setItemProvider(mAttachmentProvider);
  36. ...
复制代码
6. 页面迁移
我们需要通过实现IAbilityContinuation接口来完成跨设备迁移,具体可参照跨设备迁移开发指导。我们将MainAbility和MailEditSlice补充如下:

  1. public class MainAbility extends Ability implements IAbilityContinuation {
  2.     ...
  3.     [url=home.php?mod=space&uid=2735960]@Override[/url]
  4.     public void onCompleteContinuation(int code) {}

  5.     @Override
  6.     public boolean onRestoreData(IntentParams params) {
  7.         return true;
  8.     }

  9.     @Override
  10.     public boolean onSaveData(IntentParams params) {
  11.         return true;
  12.     }

  13.     @Override
  14.     public boolean onStartContinuation() {
  15.         return true;
  16.     }
  17. }


  18. public class MailEditSlice extends AbilitySlice implements IAbilityContinuation {
  19.     ...
  20.     @Override
  21.     public boolean onStartContinuation() {
  22.         LogUtil.info(TAG, "is start continue");
  23.         return true;
  24.     }

  25.     @Override
  26.     public boolean onSaveData(IntentParams params) {
  27.         ...
  28.         LogUtil.info(TAG, "begin onSaveData:" + mailData);
  29.         ...
  30.         LogUtil.info(TAG, "end onSaveData");
  31.         return true;
  32.     }

  33.     @Override
  34.     public boolean onRestoreData(IntentParams params) {
  35.         LogUtil.info(TAG, "begin onRestoreData");
  36.         ...
  37.         LogUtil.info(TAG, "end onRestoreData, mail data: " + cachedMailData);
  38.         return true;
  39.     }

  40.     @Override
  41.     public void onCompleteContinuation(int i) {
  42.         LogUtil.info(TAG, "onCompleteContinuation");
  43.         terminateAbility();
  44.     }
  45. }
复制代码
7. 邮件数据处理
在5 界面实现章节中我们已经实现了界面设计和初始化。
迁移的数据我们可以通过6 页面迁移中的onSaveData()和onRestoreData()方法来进行传递和恢复。

  1. private MailDataBean cachedMailData;

  2. public boolean onSaveData(IntentParams params) {
  3.         MailDataBean mailData = getMailData();
  4.         LogUtil.info(TAG, "begin onSaveData");
  5.         mailData.saveDataToParams(params);
  6.         LogUtil.info(TAG, "end onSaveData");
  7.         return true;
  8. }

  9. @Override
  10. public boolean onRestoreData(IntentParams params) {
  11.         LogUtil.info(TAG, "begin onRestoreData");
  12.         cachedMailData = new MailDataBean(params);
  13.         LogUtil.info(TAG, "end onRestoreData, mail data");
  14.         return true;
  15. }

  16. private MailDataBean getMailData() {
  17.         MailDataBean data = new MailDataBean();
  18.         data.setReceiver(receiver.getText());
  19.         data.setCc(cc.getText());
  20.         data.setTitle(title.getText());
  21.         data.setContent(content.getText());
  22.         data.setPictureDataList(mAttachmentDataList);
  23.         return data;
  24. }
复制代码
上面步骤完成了在不同设备间数据的传递,同时我们在MailEditSlice的界面初始化之前插入对传递数据的处理:

  1. //写入邮件数据
  2. if (cachedMailData == null) {
  3.     receiver.setText("user1;user2");
  4.     cc.setText("user3");
  5.     title.setText("RE:HarmonyOS 2.0 Codelab体验");
  6. } else {
  7.     receiver.setText(cachedMailData.getReceiver());
  8.     cc.setText(cachedMailData.getCc());
  9.     title.setText(cachedMailData.getTitle());
  10.     content.setText(cachedMailData.getContent());
  11.     if (cachedMailData.getPictureDataList().size() > 0) {
  12.         // 清空现有数据,并刷新
  13.         mAttachmentDataList.clear();
  14.         mAttachmentDataList.addAll(cachedMailData.getPictureDataList());
  15.     }
  16. }
复制代码

8. 获取分布式设备
在回复邮件界面中监听迁移按钮的点击事件,从窗口底部滑出分布式设备列表界面可供选择迁移,如果不存在分布式设备则弹出提示。

  1. doConnectImg.setClickedListener(
  2.     clickedView -> {
  3.         // 通过FLAG_GET_ONLINE_DEVICE标记获得在线设备列表
  4.         List<DeviceInfo> deviceInfoList = DeviceManager.getDeviceList(DeviceInfo.FLAG_GET_ONLINE_DEVICE);
  5.         if (deviceInfoList.size() < 1) {
  6.             WidgetHelper.showTips(this, "无在网设备");
  7.         } else {
  8.             DeviceSelectDialog dialog = new DeviceSelectDialog(this);
  9.             // 点击后迁移到指定设备
  10.             dialog.setListener(

  11.                     deviceInfo -> {

  12.                         LogUtil.debug(TAG, deviceInfo.getDeviceName());

  13.                         LogUtil.info(TAG, "continue button click");

  14.                         try {

  15.                             // 开始任务迁移

  16.                             continueAbility();

  17.                             LogUtil.info(TAG, "continue button click end");

  18.                         } catch (IllegalStateException | UnsupportedOperationException e) {

  19.                             WidgetHelper.showTips(this, ResourceTable.String_tips_mail_continue_failed);

  20.                         }

  21.                         dialog.hide();

  22.                     });
  23.             dialog.show();
  24.         }
  25.     });
复制代码

9. 读写分布式文件
分布式文件服务能够为用户设备中的应用程序提供多设备之间的文件共享能力,支持相同帐号下同一应用程序的跨设备访问,应用程序可以不感知文件所在的存储设备,能够在多个设备之间无缝获取文件。关于分布式文件的开发指导,可以参考分布式文件开发指导。
我们这里简单举例,通过 AVStorage来获取本机的媒体文件,然后通过Context.getDistributedDir()接口获取属于自己的分布式目录,再将本地图片保存到分布式目录下。
获取公共目录图片的代码如下:
  1. public void initPublicPictureFile(Context context) {
  2.         DataAbilityHelper helper = DataAbilityHelper.creator(context);
  3.         InputStream in = null;
  4.         OutputStream out = null;
  5.         String[] projections =
  6.                 new String[] {AVStorage.Images.Media.ID, AVStorage.Images.Media.DISPLAY_NAME, AVStorage.Images.Media.DATA};
  7.         try {
  8.                 ResultSet results = helper.query(AVStorage.Images.Media.EXTERNAL_DATA_ABILITY_URI, projections, null);
  9.                 while (results != null && results.goToNextRow()) {
  10.                         int mediaId = results.getInt(results.getColumnIndexForName(AVStorage.Images.Media.ID));
  11.                         String fullFileName = results.getString(results.getColumnIndexForName(AVStorage.Images.Media.DATA));
  12.                         String fileName = fullFileName.substring(fullFileName.lastIndexOf(File.separator) + 1);

  13.                         Uri contentUri =
  14.                                         Uri.appendEncodedPathToUri(AVStorage.Images.Media.EXTERNAL_DATA_ABILITY_URI, "" + mediaId);
  15.                         FileDescriptor fileDescriptor = helper.openFile(contentUri, "r");

  16.                         if (getDistributedDir() == null) {
  17.                                 WidgetHelper.showTips(this, "注意:分布式文件异常!", TIPS_DURATION_TIME);
  18.                                 return;
  19.                         }
  20.                         String distributedFilePath = getContext().getDistributedDir().getPath() + File.separator + fileName;

  21.                         File fr = new File(distributedFilePath);
  22.                         in = new FileInputStream(fileDescriptor);
  23.                         out = new FileOutputStream(fr);
  24.                         byte[] buffer = new byte[CACHE_SIZE];
  25.                         int count = 0;
  26.                         LogUtil.info(TAG, "START WRITING");
  27.                         while ((count = in.read(buffer)) != IO_END_LEN) {
  28.                                 out.write(buffer, 0, count);
  29.                         }
  30.                         out.close();
  31.                         LogUtil.info(TAG, "STOP WRITING");
  32.                 }
  33.         } catch (DataAbilityRemoteException | IOException e) {
  34.                 LogUtil.error(TAG, "initPublicPictureFile exception");
  35.         } finally {
  36.                 try {
  37.                         if (in != null) {
  38.                                 in.close();
  39.                         }
  40.                         if (out != null) {
  41.                                 out.close();
  42.                         }
  43.                 } catch (IOException e) {
  44.                         LogUtil.error(TAG, "io exception");
  45.                 }
  46.         }
  47. }
复制代码
在点击附件按钮获取图片时,则获取分布式路径下的文件列表,代码如下:

  1. rootView.findComponentById(ResourceTable.Id_open_dir)
  2.         .setClickedListener(
  3.                 c -> {
  4.                         // 防止多次点击一直弹窗
  5.                         if (fileDialog != null && fileDialog.isShowing()) {
  6.                                 return;
  7.                         }

  8.                         // 先获取文件并上传到共享库distributedir
  9.                         if (mDialogDataList.size() < 1) {
  10.                                 mDialogDataList.clear();
  11.                                 // 获取设备的分布式文件
  12.                                 List tempListRemotes = DeviceUtils.getFile(this);
  13.                                 mDialogDataList.addAll(tempListRemotes);
  14.                         }
  15.                         // 弹窗
  16.                         showDialog(getContext());
  17.                 });
  18. public void showDialog(Context context) {
  19.         Component rootView = LayoutScatter.getInstance(context).parse(ResourceTable.Layout_dialog_picture, null, false);
  20.         ListContainer listContainer = (ListContainer) rootView.findComponentById(ResourceTable.Id_list_container_pic);
  21.         if (mRecycleItemProvider == null) {
  22.                 mRecycleItemProvider =
  23.                         new ListComponentAdapter<String>(
  24.                                         getContext(), mDialogDataList, ResourceTable.Layout_dialog_picture_item) {
  25.                                 @Override
  26.                                 public void onBindViewHolder(CommentViewHolder commonViewHolder, String item, int position) {
  27.                                         commonViewHolder
  28.                                                         .getTextView(ResourceTable.Id_item_desc)
  29.                                                         .setText(item.substring(item.lastIndexOf(File.separator) + 1));
  30.                                         FileInputStream fileInputStream = null;
  31.                                         try {
  32.                                                 fileInputStream = new FileInputStream(item);
  33.                                                 ImageSource source = ImageSource.create(fileInputStream, null);
  34.                                                 commonViewHolder
  35.                                                                 .getImageView(ResourceTable.Id_image)
  36.                                                                 .setPixelMap(source.createPixelmap(0, null));
  37.                                         } catch (FileNotFoundException e) {
  38.                                                 LogUtil.error(TAG, "showDialog() FileNotFound Exception");
  39.                                         }
  40.                                 }
  41.                         };
  42.         } else {
  43.                 mRecycleItemProvider.notifyDataChanged();
  44.         }

  45.         clickOnAttachment(listContainer);
  46.         fileDialog = new CommonDialog(context);
  47.         fileDialog.setSize(MATCH_PARENT, MATCH_PARENT);
  48.         fileDialog.setAlignment(LayoutAlignment.BOTTOM);
  49.         fileDialog.setAutoClosable(true);
  50.         fileDialog.setContentCustomComponent(rootView);
  51.         fileDialog.show();
  52. }

  53. private void clickOnAttachment(ListContainer listContainer) {
  54.         listContainer.setItemProvider(mRecycleItemProvider);
  55.         listContainer.setItemClickedListener(
  56.                 (listContainer1, component, i, l) -> {
  57.                         if (mAttachmentDataList.contains(mDialogDataList.get(i))) {
  58.                                 WidgetHelper.showTips(this, "此附件已添加!", TIPS_DURATION_TIME);
  59.                         } else {
  60.                                 mAttachmentDataList.add(mDialogDataList.get(i));
  61.                                 mAttachmentProvider.notifyDataChanged();
  62.                                 fileDialog.destroy();
  63.                         }
  64.                 });
  65. }
复制代码
10. 恭喜你  
目前你已经成功完成了Codelab并且学到了:
  • 页面的分布式迁移
  • 分布式文件的读取

11. 参考  



回帖

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容图片侵权或者其他问题,请联系本站作侵删。 侵权投诉
链接复制成功,分享给好友