无法在NativeScript

时间:2018-05-08 15:12:18

标签: angular nativescript

我正在使用angular开发本机脚本应用,我需要访问原生Android API。我尝试使用本机脚本文档中提到的android.view,但是我收到错误消息,说明视图未定义:Native Script documentation

下面是用于访问android对象的声明。

import { android } from "application";

请帮我解释一下为什么会收到此错误?

2 个答案:

答案 0 :(得分:2)

您无需导入任何内容即可访问本机API。因此,要使用android.view,您只需在您的应用中将其称为:

const x = new android.view.ViewGroup.... // or whatever you're accessing

答案 1 :(得分:0)

根据Brad Martin的回应,没有必要进行任何导入。要在角度环境中使用它,请在组件声明之前添加此行。

wp_post