Android PhoneGap with Native Controls

前端 未结 3 814
醉酒成梦
醉酒成梦 2020-12-14 05:08

I am trying to build an Android application with PhoneGap.

I need to be able to use the PhoneGap WebView (super.appView) and all of its javascript magic but I also n

3条回答
  •  时光取名叫无心
    2020-12-14 05:44

    Yes, you can embed native controls within HTML by using the plugin.

    Call the native method which contains your native view from HTML page using plugin.

    e.g. window.plugins.anatomyPlugin.showAudio();

    I use this for showing audio player design in native.

    This guide from PhoneGap may be helpful.

提交回复
热议问题