vue 获取安卓原生方法_三步搞定:Vue.js调用Android原生操作

本文详细介绍了如何在Vue.js应用中调用Android原生方法的步骤,包括在Android端创建接口、在WebView中注入对象以及在Vue中调用这些方法。通过示例代码展示了优雅的调用方式,帮助开发者实现Vue和原生安卓的交互。
摘要由CSDN通过智能技术生成

第一步:Android对Js的接口,新建AndroidInterfaceForJs.js

import android.content.Context;

import android.os.Build;

import android.os.Handler;

import android.os.Looper;

import android.support.annotation.RequiresApi;

import android.util.Log;

import android.webkit.JavascriptInterface;

import android.webkit.ValueCallback;

import android.widget.Toast;

import com.just.agentweb.AgentWeb;

import com.yidumedical.ui.activity.PAWebActivity;

/**

* Created by shiby on 2018/1/24.

*/

public class AndroidInterfaceForJS {

private Handler deliver = new Handler(Looper.getMainLooper());

private AgentWeb agent;

private Context context;

public AndroidInterfaceForJS(AgentWeb agent, Context context) {

this.agent = agent;

this.context = context;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值