HTML5 plus 创建Android自定义插件
目录结构如下图
libs里是H5+所需libs
创建Android项目
添加H5+libs,在AndroidManifest.xml添加权限
创建WebviewMode
implements ICoreStatusListener (建议直接复制demo的WebviewMode再进行修改)创建插件PluginTest extends StandardFeature (建议直接复制demo的PluginTest再进行修改)
创建assets/www/index.html (建议直接复制demo的index.html再进行修改)
创建assets/data/properties.xml,并添加关联关系,(建议直接复制demo的properties.xml 再进行修改) 如下:
<properties>
<features>
<feature
name="plugintest"
value="*.PluginTest" > <!--完整包名 -->
</feature>
</features>
</properties>