31

我写了一个 CordavaPlugin 派生类。

public class ShowMap extends CordovaPlugin {

@Override
public boolean execute(String action, JSONArray args,
        CallbackContext callbackContext) throws JSONException {

    if (action.compareTo("showMap") == 0)
    {
        String message = args.getString(0); 
        this.echo(message, callbackContext);

        Intent i = new Intent();


        return true;
    }

    return false;
}

private void echo(String message, CallbackContext callbackContext) {
    if (message != null && message.length() > 0) { 
        callbackContext.success(message);
    } else {
        callbackContext.error("Expected one non-empty string argument.");
    }
}

}

我想从这门课上开一个新的活动。如何访问基于 phonegap 的类的原始上下文?

4

6 回答 6

42

尝试:

    Context context=this.cordova.getActivity().getApplicationContext();
    //or Context context=cordova.getActivity().getApplicationContext();
    Intent intent=new Intent(context,Next_Activity.class);

    context.startActivity(intent);
    //or cordova.getActivity().startActivity(intent);

并确保您已在AndroidManifest.xml

于 2013-01-14T15:53:19.423 回答
16
  1. 在 AndroidManifest 文件中注册您的活动
  2. 在你的插件中你应该有这样的代码,注意没有“callback.success()”被调用
  3. 在 ui 线程而不是后台线程中运行操作。
  4. 请享用

    if (action.equals("myaction")) {
        cordova.getActivity().runOnUiThread(new Runnable() {
            @Override
            public void run() {
                Context context = cordova.getActivity()
                        .getApplicationContext();
                Intent intent = new Intent(context, MyNewActivityGap.class);
                cordova.getActivity().startActivity(intent);
            }
        });
    
        return true;
    }
    
于 2013-05-08T21:26:49.207 回答
5
Context context =  cordova.getActivity().getApplicationContext();
Intent intent = new Intent(context,Next_Activity.class);

cordova.startActivityForResult(this, intent,0);
于 2013-01-29T09:15:09.963 回答
2

现在在 2017 年发布,因为它是“cordova 插件活动”和投票最多的答案的排名最高的谷歌搜索结果,以及 Cordova 插件指南都缺少以下关键信息,这让我花了很多时间才弄清楚...... config-file的父属性及具体代码:

添加到plugin.xml,根据你的需要定制:

<!-- separate config-file here targeting AndroidManifest with parent NOT equal to /* -->
<config-file target="AndroidManifest.xml"
    parent="/manifest/application">
    <activity
        android:name=com.custompackage.MyCustomActivity">
    </activity>         
</config-file>

使用上述包和活动更新启动代码:

Context context=this.cordova.getActivity().getApplicationContext();
//or Context context=cordova.getActivity().getApplicationContext();
Intent intent=new Intent(context, com.custompackage.MyCustomActivity.class);

context.startActivity(intent);
//or cordova.getActivity().startActivity(intent);
于 2017-07-05T18:17:45.837 回答
1

我使用了隐式意图让这个功能正常工作

  Intent i = new Intent("ACTION_PLAY_VIDEO");
 this.cordova.startActivityForResult((CordovaPlugin) this,i, 0);

不要忘记将意图过滤器放在清单文件中的目标活动中

<activity android:name="VideoPlayerActivity" >
       <intent-filter>
            <action android:name="ACTION_PLAY_VIDEO" />


            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>

于 2014-07-02T10:06:50.233 回答
-2

请参阅此示例。

首先,您需要在 config.xml 中声明您的自定义插件。您可以在 res > xml 文件夹中找到此文件。

<feature name="CustomPlugin">
      <param name="android-package" value="com.Phonegap.CustomPlugin" />
</feature>

然后你需要使用Java代码实现插件

public class CustomPlugin extends CordovaPlugin {

    @Override
    public boolean execute(String action, JSONArray args, CallbackContext callbackContext)
            throws JSONException {

        if (action.equals("sayHello")){
            try {
                String responseText = "Hello world, " + args.getString(0);
                callbackContext.success(responseText);
            } catch (JSONException e){
                callbackContext.error("Failed to parse parameters");
            }
            return true;
        }

        return false;
    }
}

最后我们从 javascript 调用一个插件

function initial(){
    var name = $("#NameInput").val();
    cordova.exec(sayHelloSuccess, sayHelloFailure, "CustomPlugin", "sayHello", [name]);
}

function sayHelloSuccess(data){
    alert("OK: " + data);
}

function sayHelloFailure(data){
    alert("FAIL: " + data);
}
于 2015-03-16T04:14:27.367 回答