電子產(chǎn)業(yè)一站式賦能平臺(tái)

PCB聯(lián)盟網(wǎng)

搜索
查看: 603|回復(fù): 0
收起左側(cè)

鴻蒙應(yīng)用:在線電子詞典練習(xí)部分分享

[復(fù)制鏈接]

2607

主題

2607

帖子

7472

積分

高級(jí)會(huì)員

Rank: 5Rank: 5

積分
7472
跳轉(zhuǎn)到指定樓層
樓主
發(fā)表于 2020-12-23 17:56:32 | 只看該作者 回帖獎(jiǎng)勵(lì) |倒序?yàn)g覽 |閱讀模式
鴻蒙應(yīng)用:在線電子詞典練習(xí)部分分享, 前期部分效果圖



代碼如下:

<?xml version=“1.0“ encoding=“utf-8“?>

<Directionallayout

     xmlns:ohos=“http://schemas.huawei.com/res/ohos“

     ohos:height=“match_parent“

     ohos:width=“match_parent“

     ohos:orientation=“vertical“>



   <DirectionalLayout

         ohos:height=“match_parent“

         ohos:width=“match_parent“

         ohos:left_margin=“200vp“

         ohos:right_margin=“200vp“

         ohos:top_margin=“20vp“

         ohos:orientation=“vertical“>



         <DirectionalLayout

             ohos:height=“50vp“

             ohos:width=“match_parent“

             ohos:orientation=“horizontal“>



             <TextField

                 ohos:id=“$+id:jltftextfield_word“

                 ohos:height=“match_content“

                 ohos:width=“match_parent“

                 ohos:hint=“請(qǐng)輸入要查詢的單詞“

                 ohos:background_element=“$graphic:border“

                 ohos:weight=“1“

                 ohos:padding=“4vp“

                 ohos:text_size=“30“/>

              <Button

                  ohos:id=“$+id:jltfbutton_search“

                  ohos:height=“30vp“

                  ohos:width=“100vp“

                  ohos:text=“搜索“

                  ohos:scale_mode=“zoom_center“/>

         </DirectionalLayout>



     <Text

         ohos:id=“$+id:jltftext_search_result“

         ohos:height=“200vp“

         ohos:width=“match_parent“

         ohos:multiple_lines=“true“

         ohos:visibility=“hide“

         ohos:top_margin=“10vp“

         ohos:text_alignment=“l(fā)eft|top“

         ohos:text_size=“20vp“

        />

      <Image

          ohos:id=“$+id:jltfimage“

          ohos:weight=“1“

          ohos:height=“match_parent“

          ohos:width=“match_parent“

          ohos:image_src=“$media:index3“

          ohos:scale_mode=“zoom_center“/>

   </DirectionalLayout>

</DirectionalLayout>

提取本地詞庫(kù)

代碼如下:

新建一個(gè)包一個(gè)類(電子詞典類)

package com.example.jltfzidian.common;



import ohos.app.AbilityContext;

import ohos.global.resource.Resource;



import java.io.File;

import java.io.FileOutputStream;

import java.io.IOException;

import java.nio.file.Paths;



public class jltfmydict {

     private AbilityContext context;

     private File jltfdictpath;

     private  File jltfdbpath;

     public   jltfmydict(AbilityContext context){

         this.context = context;

         jltfdictpath = new File(context.getDatabaseDir().toString() +

                 “/MainAbility/databases/db“);

         if (!jltfdictpath.exists()){

             jltfdictpath.mkdirs();

         }

         jltfdbpath = new

                 File(Paths.
get(jltfdbpath.toString(),“edictshujuku.sql“).toString());

     }

     private void jltfextractdb() throws IOException{

         //讀取edictshujuku.sql文件的字節(jié)流

         Resource resource =

                 context.getResourceManager().getRawFileEntry(“resoutces/rawfile/edictshujuku.sql“).openRawFile();

         if (jltfdbpath.exists()){

             jltfdbpath.delete();

         }

         FileOutputStream jltffos = new FileOutputStream(jltfdbpath);

         byte[] jltfbuffer = new byte[4096];

         int count = 0;

         while ((count = resource.read(jltfbuffer))>= 0){

             jltffos.write(jltfbuffer,0,count);

         }

         resource.close();

         jltffos.close();

     }

     public void init() throws  IOException{

         jltfextractdb();

     }

}

MainAbilitySlice中 添加如下代碼



     mydict = new jltfmydict(this);

     try {

         mydict.init();

     }catch (IOException e){

         terminateAbility();

     }

}

本練習(xí)參考了李寧老師公開(kāi)的代碼與課程。

發(fā)表回復(fù)

本版積分規(guī)則


聯(lián)系客服 關(guān)注微信 下載APP 返回頂部 返回列表