【每日学点鸿蒙知识】跳转三方地图、getStringSync性能、键盘避让模式等

news/2025/1/11 4:30:12/

1、跳转三方地图导航页

类似于Android 跳转到地图APP 导航页面:

// 目标地点的经纬度和名称 
double destinationLat = 36.547901; 
double destinationLon = 104.258354; 
String destinationName = "目的地名称"; 
// 构建URI Uri uri = Uri.parse("amapuri://route/plan/?dlat=" + destinationLat + "&dlon=" + destinationLon + "&dname=" + destinationName + "&dev=0&t=0"); 
// 创建Intent并启动活动 
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.addCategory(Intent.CATEGORY_DEFAULT); 
intent.setPackage("com.autonavi.minimap"); 
if (intent.resolveActivity(getPackageManager()) != null) 
{ startActivity(intent); 
} else 
{ // 提示用户未安装高德地图 Toast.makeText(this, "请先安装高德地图", Toast.LENGTH_LONG).show(); 
}

跳转花瓣地图参考:https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/map-petalmaps-V5

import { common, Want } from '@kit.AbilityKit';
let petalMapWant: Want = {bundleName: 'com.huawei.hmos.maps.app',uri: 'maps://routes',parameters: {linkSource: 'com.other.app',destinationLatitude: 31.983015468224288,destinationLongitude: 118.78058590757131,destinationPoiId: '2031694785326435456',destinationName: '南京(雨花)国际软件外包产业园'}
}let context = getContext(this) as common.UIAbilityContext;
context.startAbility(petalMapWant);

跳转高德地图参考:https://lbs.amap.com/api/amap-mobile/gettingstarted

let want: Want = {uri: 'amapuri://route/plan?sid=BGVIS1&dlat=39.98848272&dname=B&slat=39.92848272&dlon=116.47560823&did=BGVIS2&slon=116.39560823&sname=A&t=0'
}
// this.context:一般是在 Component 组件里调用 getContext(this) as common.UIAbilityContext 获取到的 UIAbilityContext
this.context.startAbility(want, (err: BusinessError) => {if (err.code) {// 处理业务逻辑错误console.error(`startAbility failed,code is ${err.code},message is ${err.message}`);return}// 执行正常业务console.info('startAbility succeed')
})

2、限制输入框最大字节数

TextArea 输入框可以通过maxLength设置最大输入字符数,但是如何设置最大输入的字节数?utf-8每个字符占用字节数量不一致,无法直接转换,Android EditText
提供了setFilters方式:

InputFilter[] inputFilters = new InputFilter[1];  
inputFilters[0] = new ByteLengthInputFilter(MSG_LENGTH_LIMIT_BYTES);  
mEditText.setFilters(inputFilters);public class ByteLengthInputFilter implements InputFilter {  private final int mMax;  private final Charset mCharset;  private final CharsetDecoder mCharsetDecoder;...
}

鸿蒙目前没有提供这种机制,期待后面版本迭代更新。

3、getStringSync性能问题

使用系统提供的getStringSync耗时有点高,要几毫秒,必须使用异步的回调的方式吗:

static getStringSync(context: common.Context | undefined, resource: Resource): string {  let rscManager = (context ?? getContext() as common.UIAbilityContext).resourceManager;  return rscManager.getStringSync(resource)  
}

可以改成rscManager.getStringSync(resource.id),使用id方式可以减少到40us。

4、如何设置键盘的避让模式

可以设置键盘避让模式,默认是KeyboardAvoidMode.OFFSET,:

this.getUIContext().setKeyboardAvoidMode(KeyboardAvoidMode.RESIZE)

5、调用NAPI 中的C 方法报错:Cannot read property encodeLame of undefined

创建Native C++模块,直接运行Add Demo没有问题,但是使用预编译的MP3编码器的SO 后,调用所有的NAPI 方法都报错:Cannot read property encodeLame of undefined,不依赖MP3 SO库Add 方法可以调用成功。MP3 SO库没有问题:

$ ls -la
total 1648
drwxr-xr-x@ 7 shen  staff     224  8 12 23:29 .
drwxr-xr-x@ 6 shen  staff     192  8 12 23:29 ..
-rw-r--r--@ 1 shen  staff  484466  8 12 23:29 libmp3lame.a
-rwxr-xr-x@ 1 shen  staff    1007  8 12 23:29 libmp3lame.la
lrwxr-xr-x@ 1 shen  staff      19  8 12 23:29 libmp3lame.so -> libmp3lame.so.0.0.0
lrwxr-xr-x@ 1 shen  staff      19  8 12 23:29 libmp3lame.so.0 -> libmp3lame.so.0.0.0
-rwxr-xr-x@ 1 shen  staff  348448  8 12 23:29 libmp3lame.so.0.0.0

依赖方式:

add_library(lame SHARED IMPORTED)  
set_target_properties(lame  PROPERTIES  IMPORTED_LOCATION ${CMAKE_CURRENT_SOURCE_DIR}/third_party/lame/libs/${OHOS_ARCH}/libmp3lame.so)  add_library(audio_engine SHARED napi_init.cpp)  
target_link_libraries(audio_engine PUBLIC libace_napi.z.so lame)

问题原因:不能直接将libmp3lame.so.0.0.0 重命名为libmp3lame.so后使用,要使用libmp3lame.so.0。
当前应用的so是IDE侧打包带入的,允许应用通过 libxxx.so.x的方式提供so,如果需要同时带入两个版本的 so,real name 与 so name 名字要相同,明确到主版本号libxxx.x,不需要带上 .y.z;所以目前libxxx.so是能够使用的,libxxx.3.1以及libxxx.so.3.1.0需要改成libxxx.x的形式使用。然后需要在CMakeLists.txt文件中重新配置并编译。
参考:https://developer.huawei.com/consumer/cn/doc/harmonyos-faqs-V5/faqs-ndk-36-V5


http://www.ppmy.cn/news/1562153.html

相关文章

运行vue项目,显示“npm”无法识别为 cmdlet、函数、脚本文件或可操作程序的名称

PS D:\weduproject\wedu1\wedu\wedu-fast-vue> npm run dev,运行时出现像下面这样的报红信息, npm : The term npm is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or …

Nginx:HTTP 方法控制

什么是 HTTP 方法控制? HTTP 方法控制 是指在 Nginx 中配置规则,以限制哪些 HTTP 请求方法被允许访问特定资源。HTTP 定义了多种请求方法,每种方法都有其特定用途: GET:用于请求获取指定资源。POST:用于向指定资源提交数据,通常用于提交表单或上传文件。PUT:用于更新指…

pandas系列----DataFrame简介

DataFrame是Pandas库中最常用的数据结构之一,它是一个类似于二维数组或表格的数据结构。DataFrame由多个列组成,每个列可以是不同的数据类型(如整数、浮点数、字符串等)。每列都有一个列标签(column label)…

【微服务】6、限流 熔断

线程隔离与容错处理 本视频主要讲解了在购物车业务中,因商品微服务响应慢导致的问题及解决方案,重点介绍了线程隔离后查询购物车业务不可用的情况,以及如何通过Fallback逻辑进行缓解,包括配置Feign调用为簇点资源、添加Fallback逻…

QT-TCP-server

为了实现高性能的TCP通讯&#xff0c;以下是一个基于Qt的示例&#xff0c;展示如何利用多个线程、非阻塞I/O、数据分块和自定义协议进行优化。该示例以TCP服务器和客户端的形式展示&#xff0c;能够承受高负载并实现快速数据传输。 高性能TCP Server示例 #include <QTcpSe…

算法5--位运算

目录 基础经典例题[面试题 01.01. 判定字符是否唯一](https://leetcode.cn/problems/is-unique-lcci/description/)[268. 丢失的数字](https://leetcode.cn/problems/missing-number/description/)[371. 两整数之和](https://leetcode.cn/problems/sum-of-two-integers/descrip…

Redis数据结构ZipList和QuickList原理解析

大家好&#xff0c;我是袁庭新。 在数据库的世界里&#xff0c;Redis 以其高效和灵活备受瞩目。而其中的 ZipList 和 QuickList 数据结构更是独具魅力。它们在内存管理和数据存储方面有着独特的设计理念&#xff0c;深入探究这些结构&#xff0c;能让我们更好地理解 Redis 的强…

(回溯法)leetcode39组合总和

第一个2开头&#xff0c;下面的子节点的集合元素均为2,5,3 但是在5开头&#xff0c;下面的子节点集合元素均为5,3 带着这个图的思路确定i和index的传递值 backtracking(i, nums,8,sum);用的是i而不是i1 // ConsoleApplication3.cpp : 此文件包含 "main" 函数。程序…