0

我通过 gogopop 找到了一个名为 CameraKit 的很棒的相机库,我想用该库制作一个 NativeScript 插件,但他们有一个看起来像这样的自定义视图:

<com.flurgle.camerakit.CameraView
    android:id="@+id/camera"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:adjustViewBounds="true" />

你知道如何在 NativeScript 中使用它吗?

4

1 回答 1

1

如果您尝试制作 NativeScript 2.5(及更早版本)插件,则可以按照我的博客文章http://fluentreports.com/blog/?p=167中的示例进行操作,这将向您展示如何创建插件。

我还没有为 3.0 写过新的博客文章,我知道还知道。因此,您将不得不查看上面的博客,然后 NativeScript 3.0 更改文档位于https://github.com/nativescript/nativescript/blob/master/Modules30Changes.md

于 2017-05-06T07:33:17.920 回答