Android
<h2>H5调用原生方法</h2>
<table>
<thead>
<tr>
<th>参数</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>nativieMethod</td>
<td>要调用的原生方法名称</td>
</tr>
<tr>
<td>params</td>
<td>h5传给原生的参数</td>
</tr>
<tr>
<td>callbackFunction</td>
<td>原生回调h5的方法名</td>
</tr>
</tbody>
</table>
<pre><code>window.android.invoke_native(String nativiteMethod,String params,String callbackFunction);</code></pre>