未验证 提交 8a03e089 编写于 作者: 打打卡夫卡's avatar 打打卡夫卡 提交者: Gitee

update docs/plugin/UTSForAndroid.md.

Signed-off-by: 打打卡夫卡's avatar杜庆泉 <zmobs0@163.com>
上级 f65f83d1
...@@ -109,4 +109,22 @@ getResourcePath("uni_modules/test-uts-static/static/logo.png") ...@@ -109,4 +109,22 @@ getResourcePath("uni_modules/test-uts-static/static/logo.png")
容器的宿主activity 回退物理按键点击时触发 容器的宿主activity 回退物理按键点击时触发
## 4 注意事项 ## 4 常见问题
\ No newline at end of file
### Float类型传参
android很多布局参数强制要求Float,但是ts中没有内置这种类型。可以使用下面的代码实现转换
```
var textSize = 30.0.toFloat();
```
### 泛型参数
android中UI相关的api,很多都要去泛型,目前UTS支持用as关键字强转,满足类似的场景
```
var frameContent = decorView.findViewById(android.R.id.content) as FrameLayout
```
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册