h5开发之cordova/phonegap自定义组件调用android native代码

简介: h5开发之cordova/phonegap自定义组件调用android native代码

h5混合开发有时需要调用本地的代码,就是js和原生代码交互。当然rn的封装和调用都很方便,现在用下cordova封装自定义插件plugin,cordova和phonegap的关系自行百度吧,当然cordova的安装此处也省略。


首先以 js 调用安卓的Toast为例,显示Toast提示,同时android studio中Log 一下。
具体怎么做,下面然后我们来一件一件的抽肢剖解  
当然新建一个android 工程,比如这样 3.gif

----------------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------------
然后 导入CordovaLib 在建的工程里  在Cordova 新建的项目里有这个 复制出来导入到 android studio中就好了
f7d1cb17eae5e637d69d3bec42afbfc1b746677f





5bdd956440629b635213e35873041b34606a186b

package plugins.com.test;  
  
import android.util.Log;  
import android.widget.Toast;  
  
import org.apache.cordova.CallbackContext;  
import org.apache.cordova.CordovaPlugin;  
import org.json.JSONArray;  
import org.json.JSONException;  
  
/** 
 * Created by Administrator on 2018/1/18. 
 */  
  
public class Demo extends CordovaPlugin{  
    @Override  
    public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {  
        if (action.equals("demoToast")) {  
            String string = args.getString(0);  
            this.demoToast(string, callbackContext);  
            return  true;  
        }  
        return  false;  
    }  
    private void demoToast(String str, CallbackContext callbackContext) {  
        Log.i("demo", "demo_demo");  
        if (str != null || str.length() > 0) {  
            Toast.makeText(cordova.getActivity(), str, Toast.LENGTH_LONG).show();  
            callbackContext.success(str);  
        } else {  
            callbackContext.error("str 不能为空~~~!!");  
        }  
    }  
}

写到这里需要用plugman 打包插件了 先安装plugman  npm install plugman -g

plugman create --name 插件名 --plugin_id 插件ID --plugin_version 插件版本号

如下图 三个步骤

22500f872913a65507a3ae242857c574d4489ac0

把java代码复制到 src目录下 新建android 目录

7cdb896c25b14d117c1558c11383e1fd1d992b94


var exec = require('cordova/exec');  
module.exports = {  
    demoToast: function (arg0, success, error) {  
        exec(success, error, 'Demo', 'demoToast', [arg0]);  
    }  
}  

plugin.xml 配置


<?xml version='1.0' encoding='utf-8'?>  
<plugin id="plugins.com.demo" version="1.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">  
    <name>plugins-com-demo</name>  
    <js-module name="demo" src="www/plugins-com-demo.js">  
        <clobbers target="Demo" /><!--Demo 为 demo的类名 写错了 alert 提示err class not found -->  
    </js-module>  
    <platform name="android">  
        <config-file target="res/xml/config.xml" parent="/*">  
        <feature name="Demo">  
            <param name="android-package" value="plugins.com.demo.Demo"/> <!--Demo  类的 完成路径   -->  
        </feature>  
        </config-file>  
  
        <source-file src="src/android/Demo.java" target-dir="src/plugins/com/demo"/><!--Demo 在android工程里 src下的全路径   -->  
    </platform>  
</plugin>  


插件就完成了,需要在cordova 新建的项目中加入此插件
新建一个 项目 步骤如下

cordova create test

进入test 目录 

cd test

cordova platform add android 

加入插件如下图
69f39aa9513f691f425fd2043090f15f64d35ebb

cordova plugin add c:\插件路径\plugins-com-demo

在新建的 test 项目下 www\js\index.js中加入如下代码


onDeviceReady: function() {  
       Demo.demoToast('ok, ok!!!', function(str) {  
           alert(str + 'succc')  
       }, function(err) {  
           alert(err)  
       });  
       this.receivedEvent('deviceready');  
   },

同理设置点击


<h1 id="demo">click me click me</h1>


onDeviceReady: function() {  
        this.receivedEvent('deviceready');  
        document.getElementById('demo').addEventListener('click', function(e) {  
            demo.demoToast('ok, ok!!!', function(str) {  
                alert(str + 'succc')  
            }, function(err) {  
                alert(err)  
            });  
        })  
    },  

cordova run android
05343a9798214608377857622271ae2a422e5bd0
这样做不是目的,下面把视频播放用安卓代码播放

首先创建一个 activity_video.xml

<?xml version="1.0" encoding="utf-8"?>  
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    xmlns:tools="http://schemas.android.com/tools"  
    android:orientation="vertical" android:layout_width="match_parent"  
    android:layout_height="match_parent">  
  
    <EditText  
        android:id="@+id/editText"  
        android:layout_width="match_parent"  
        android:layout_height="wrap_content"  
        android:ems="10"  
        android:inputType="textPersonName"  
        android:text="你好-new-activity" />  
    <VideoView  
        android:layout_width="match_parent"  
        android:layout_height="200dp"  
        android:id="@+id/videView"/>  
</LinearLayout>  

对应的VideoActivity.class
package plugins.com.demo;  
  
import android.app.Activity;  
import android.net.Uri;  
import android.os.Bundle;  
import android.widget.MediaController;  
import android.widget.VideoView;  
  
  
/** 
 * Created by Administrator on 2018/1/22. 
 */  
  
public class VideoActivity extends Activity{  
    @Override  
    protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.activity_new);  
        VideoView videoView = (VideoView)findViewById(R.id.videView);  
        MediaController mc = new MediaController(this);  
        videoView.setVideoURI(Uri.parse("http://127.0.0.1:8888/Test/2017.mp4"));  
        videoView.setMediaController(mc);  
        videoView.start();  
    }  
}  

MainActivity里唤起newActivity
<?xml version="1.0" encoding="utf-8"?>  
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    xmlns:app="http://schemas.android.com/apk/res-auto"  
    xmlns:tools="http://schemas.android.com/tools"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent"  
    tools:context="plugins.com.demo.MainActivity">  
  
    <TextView  
        android:layout_width="wrap_content"  
        android:layout_height="wrap_content"  
        android:text="Hello World!"  
        app:layout_constraintBottom_toBottomOf="parent"  
        app:layout_constraintLeft_toLeftOf="parent"  
        app:layout_constraintRight_toRightOf="parent"  
        app:layout_constraintTop_toTopOf="parent"  
        tools:layout_constraintTop_creator="1"  
        tools:layout_constraintRight_creator="1"  
        tools:layout_constraintBottom_creator="1"  
        tools:layout_constraintLeft_creator="1"  
        android:id="@+id/textView" />  
    <Button  
        android:layout_width="291dp"  
        android:layout_height="49dp"  
        android:text="newActive"  
        android:layout_marginStart="27dp"  
        app:layout_constraintBaseline_toBaselineOf="@+id/textView"  
        tools:layout_constraintBaseline_creator="1"  
        tools:layout_constraintLeft_creator="1"  
        app:layout_constraintLeft_toLeftOf="parent"  
        android:layout_marginLeft="36dp"  
        android:id="@+id/btnNewActivity"/>  
</android.support.constraint.ConstraintLayout>
3e0d86ec69347b7110f06837957c18b8a657a243
记得加入网络读权限
同时加入js 可以调用的类VideoNewActivity.java
public class VideoNewActivity extends CordovaPlugin{  
    @Override  
    public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {  
        super.execute(action, args, callbackContext);  
        if (action.equals("showVideo")) {  
            Context ctx = cordova.getActivity().getApplicationContext();  
            Intent viodeIntent = new Intent(ctx, VideoActivity.class);  
            this.cordova.getActivity().startActivity(viodeIntent);  
            return  true;  
        }  
        return  false;  
    }  
}  

在安卓项目下完成组件的java代码,剩下的就是打包插件 同样的味道还是 plugman, 
但是这样直接打包是不对的cordova不能直接识别findViewById, so改下android代码

public class VideoNewActivity extends CordovaPlugin{  
    @Override  
    public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {  
        super.execute(action, args, callbackContext);  
        if (action.equals("showVideo")) {  
            Context ctx = cordova.getActivity().getApplicationContext();  
            Intent viodeIntent = new Intent(ctx, VideoActivity.class);  
            this.cordova.getActivity().startActivity(viodeIntent);  
            return  true;  
        }  
        return  false;  
    }  
}  

public class VideoActivity extends Activity {  
  
    @Override  
    public void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        String packageName = getApplication().getPackageName();  
        setContentView(getApplication().getResources().getIdentifier("activity_video", "layout", packageName));  
  
        int video = getApplication().getResources().getIdentifier("videView", "id", packageName);  
        VideoView videoView = (VideoView)findViewById(video);  
        MediaController mc = new MediaController(this);  
        videoView.setVideoURI(Uri.parse("http://127.0.0.1:8888/Test/2017.mp4"));  
        videoView.setMediaController(mc);  
        videoView.start();  
    }  
}

index.js 代码


onDeviceReady: function() {  
        this.receivedEvent('deviceready');  
        document.getElementById('demo').addEventListener('click', function(e) {  
            VideoNewActivity.playVideo('click', function(e) {  
                alert(str + 'video-succc')  
            }, function(err) {  
                alert(err)  
            });  
        })  
    },

plugins-com-video.js


var exec = require('cordova/exec');  
  
module.exports = {  
    playVideo: function (arg0, success, error) {  
        exec(success, error, 'VideoNewActivity', 'showVideo', [arg0]);  
    }  
}  

plugin.xml配置如下

<?xml version='1.0' encoding='utf-8'?>  
<plugin id="plugins.com.VideoNewActivity" version="1.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">  
    <name>VideoNewActivity</name>  
    <js-module name="VideoNewActivity" src="www/plugins-com-video.js">  
        <clobbers target="VideoNewActivity" />  
    </js-module>  
    <platform name="android">  
        <config-file target="res/xml/config.xml" parent="/*">  
            <feature name="VideoNewActivity">  
                <param name="android-package" value="plugins.com.demo.VideoNewActivity"/>  
            </feature>  
        </config-file>  
        <source-file src="src/android/VideoNewActivity.java" target-dir="src/plugins/com/demo"/>  
  
        <config-file target="AndroidManifest.xml" parent="/manifest/application">  
            <!-- /manifest/application activity 才能写入 application 里  -->  
            <uses-permission android:name="android.permission.INTERNET" />  
            <activity android:label="VideoActivity" android:name="plugins.com.demo.VideoActivity"></activity>  
        </config-file>  
  
        <config-file parent="/*" target="AndroidManifest.xml"></config-file>  
          
        <source-file src="src/android/VideoActivity.java" target-dir="src/plugins/com/demo"/>  
        <source-file src="src/android/activity_video.xml" target-dir="res/layout"/>  
  
    </platform>  
      
</plugin>  

注意activity引入的位置

来看个效果图吧···如下····
a24a1cc37c2756c8a726283a199ecf40c918c2b1
------------------------------------------------------------------------------

-------------------------------------------------------------------
------------------------也可以是样---------------------------------------------------------------
6f1572f6def99528486304571d1c9e7f6325990e
有不完善敬请更正··········


相关文章
|
21天前
|
搜索推荐 前端开发 API
探索安卓开发中的自定义视图:打造个性化用户界面
在安卓应用开发的广阔天地中,自定义视图是一块神奇的画布,让开发者能够突破标准控件的限制,绘制出独一无二的用户界面。本文将带你走进自定义视图的世界,从基础概念到实战技巧,逐步揭示如何在安卓平台上创建和运用自定义视图来提升用户体验。无论你是初学者还是有一定经验的开发者,这篇文章都将为你打开新的视野,让你的应用在众多同质化产品中脱颖而出。
46 19
|
21天前
|
JSON Java API
探索安卓开发:打造你的首个天气应用
在这篇技术指南中,我们将一起潜入安卓开发的海洋,学习如何从零开始构建一个简单的天气应用。通过这个实践项目,你将掌握安卓开发的核心概念、界面设计、网络编程以及数据解析等技能。无论你是初学者还是有一定基础的开发者,这篇文章都将为你提供一个清晰的路线图和实用的代码示例,帮助你在安卓开发的道路上迈出坚实的一步。让我们一起开始这段旅程,打造属于你自己的第一个安卓应用吧!
49 14
|
24天前
|
Java Linux 数据库
探索安卓开发:打造你的第一款应用
在数字时代的浪潮中,每个人都有机会成为创意的实现者。本文将带你走进安卓开发的奇妙世界,通过浅显易懂的语言和实际代码示例,引导你从零开始构建自己的第一款安卓应用。无论你是编程新手还是希望拓展技术的开发者,这篇文章都将为你打开一扇门,让你的创意和技术一起飞扬。
|
22天前
|
XML 存储 Java
探索安卓开发之旅:从新手到专家
在数字时代,掌握安卓应用开发技能是进入IT行业的关键。本文将引导读者从零基础开始,逐步深入安卓开发的世界,通过实际案例和代码示例,展示如何构建自己的第一个安卓应用。我们将探讨基本概念、开发工具设置、用户界面设计、数据处理以及发布应用的全过程。无论你是编程新手还是有一定基础的开发者,这篇文章都将为你提供宝贵的知识和技能,帮助你在安卓开发的道路上迈出坚实的步伐。
32 5
|
21天前
|
开发框架 Android开发 iOS开发
安卓与iOS开发中的跨平台策略:一次编码,多平台部署
在移动应用开发的广阔天地中,安卓和iOS两大阵营各占一方。随着技术的发展,跨平台开发框架应运而生,它们承诺着“一次编码,到处运行”的便捷。本文将深入探讨跨平台开发的现状、挑战以及未来趋势,同时通过代码示例揭示跨平台工具的实际运用。
|
22天前
|
XML 搜索推荐 前端开发
安卓开发中的自定义视图:打造个性化UI组件
在安卓应用开发中,自定义视图是一种强大的工具,它允许开发者创造独一无二的用户界面元素,从而提升应用的外观和用户体验。本文将通过一个简单的自定义视图示例,引导你了解如何在安卓项目中实现自定义组件,并探讨其背后的技术原理。我们将从基础的View类讲起,逐步深入到绘图、事件处理以及性能优化等方面。无论你是初学者还是有经验的开发者,这篇文章都将为你提供有价值的见解和技巧。
|
22天前
|
搜索推荐 前端开发 测试技术
打造个性化安卓应用:从设计到开发的全面指南
在这个数字时代,拥有一个定制的移动应用不仅是一种趋势,更是个人或企业品牌的重要延伸。本文将引导你通过一系列简单易懂的步骤,从构思你的应用理念开始,直至实现一个功能齐全的安卓应用。无论你是编程新手还是希望拓展技能的开发者,这篇文章都将为你提供必要的工具和知识,帮助你将创意转化为现实。
|
25天前
|
Java 调度 Android开发
安卓与iOS开发中的线程管理差异解析
在移动应用开发的广阔天地中,安卓和iOS两大平台各自拥有独特的魅力。如同东西方文化的差异,它们在处理多线程任务时也展现出不同的哲学。本文将带你穿梭于这两个平台之间,比较它们在线程管理上的核心理念、实现方式及性能考量,助你成为跨平台的编程高手。
|
22天前
|
Java Android开发 开发者
探索安卓开发:构建你的第一个“Hello World”应用
在安卓开发的浩瀚海洋中,每个新手都渴望扬帆起航。本文将作为你的指南针,引领你通过创建一个简单的“Hello World”应用,迈出安卓开发的第一步。我们将一起搭建开发环境、了解基本概念,并编写第一行代码。就像印度圣雄甘地所说:“你必须成为你希望在世界上看到的改变。”让我们一起开始这段旅程,成为我们想要见到的开发者吧!
30 0
|
25天前
|
存储 监控 Java
探索安卓开发:从基础到进阶的旅程
在这个数字时代,移动应用已成为我们日常生活的一部分。对于开发者来说,掌握安卓开发不仅是技能的提升,更是通往创新世界的钥匙。本文将带你了解安卓开发的核心概念,从搭建开发环境到实现复杂功能,逐步深入安卓开发的奥秘。无论你是初学者还是有经验的开发者,这篇文章都将为你提供新的见解和技巧,帮助你在安卓开发的道路上更进一步。
22 0