当前位置:网站首页>【Harmony OS】【FAQ】鸿蒙问题合集1
【Harmony OS】【FAQ】鸿蒙问题合集1
2022-08-03 04:21:00 【华为开发者论坛】
1、【ArkUI】eTS方式显示Toast
import prompt from '@system.prompt'
@Entry
@Component
struct Index {
build() {
Column() {
Row() {
Button("Hello Button")
.fontColor(Color.White)
.fontSize(20)
.padding(20)
.onClick(() => {
prompt.showToast({
message: 'Hello,I am Toast',
duration: 2000,
bottom: 200
})
})
}
}.backgroundColor(Color.Black)
.width('100%')
.height('100%')
}
}
显示效果:
2、【DevEco Device Tool】无法找到工具对应下载链接
HarmonyOS官网无法找到DevEco Device Tool工具对应下载链接
1、当前工具临时下线优化中,预计12月30日(星期四)会上线3.0Beta2版本
2、可以通过账号登录此链接,DP平台-集成开发页签可以下载
3、【Java UI】如何调试鸿蒙应用运行至真机
真机运行调试应用需要先获取udid,然后在AGC控制台添加设备信息。
获取UDID命令行如下:
adb shell bm get -u
可以参考官方网站应用调试指南:文档中心
编译生成hap包指南:文档中心
4、【ArkUI】ets开发时,如何设置组件的最小宽度或者最大宽度?
可以参考以下API方式可以设置最大和最小宽度:
/**
* constraint Size:
* minWidth:minimum Width,maxWidth:maximum Width,minHeight:minimum Height ,maxHeight:maximum Height,
* @since 7
*/
constraintSize(value: {
minWidth?: number | string | Resource;
maxWidth?: number | string | Resource;
minHeight?: number | string | Resource;
maxHeight?: number | string | Resource;
}): T;
以下为ets代码:
@Entry
@Component
struct Second {
build() {
Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
Text('Hello World')
.fontSize(50)
.fontWeight(FontWeight.Bold)
.constraintSize({
minWidth: 100,
maxWidth: 200,
minHeight: 100,
maxHeight: 200
})
}
.width('100%')
.height('100%')
}
}
5、【Java UI】真机调试时生成的app的名字一直都是entry_Mainability 如何自定义名字呢?
请在对应资源目录resource→base→element→string.json文件中的name和value,每个语言对应的都需要修改:
{
"string": [
{
"name": "entry_MainAbility",
"value": "entry_MainAbility"
}
]
}
欲了解更多更全技术文章,欢迎访问:https://developer.huawei.com/consumer/cn/forum/topic/0203810194016170224?fid=0101587866109860105?ha_source=zzh |
边栏推荐
- OpenFOAM extracts equivalency and calculates area
- 汇编书摘抄
- 阿里面试官:聊聊如何格式化Instant
- 肖sir___面试就业课程____app
- 数据库基本概述与SQL概述
- 2022 Henan Mengxin League Game (4): Zhengzhou University of Light Industry E - Sleep Well
- 正则表达式与绕过案例
- Record some bugs encountered - when mapstruct and lombok are used at the same time, the problem of data loss when converting entity classes
- 直播|StarRocks 技术内幕 :低基数全局字典优化
- 肖sir_测试点
猜你喜欢
随机推荐
社交电商:流量红利已尽,裂变营销是最低成本的获客之道
深圳线下报名|StarRocks on AWS:如何对实时数仓进行极速统一分析
SM30 表维护视图数据保存前 数据校验事件
WinForm(二):WinFrom中Main函数的入参和出参
8.电影评论分类:二分类问题
道通转债,微芯转债,博22转债上市价格预测
TCP相关面试常问
11.机器学习基础:机器学习的四个分支
9.新闻分类:多分类问题
三丁基-巯基膦烷「tBuBrettPhos Pd(allyl)」OTf),1798782-17-8
2022 the first of the new league henan (4) : zhengzhou university of light industry G - maze
解析,强势供应商的管理方法
10.预测房价:回归问题
Shell编程的条件语句
MySQL 入门:Case 语句很好用
MySql 创建索引
CobalStrike(CS)基础超级详细版
肖sir___面试就业课程____性能测试
DC-4靶场搭建及渗透实战详细过程(DC靶场系列)
【翻译】开发与生产中的Kubernetes修复成本对比