我尝试在Ubuntu 14.04中使用cordova来创建一个简单的Android应用程序。我使用
创建了第一个项目 cordova create hello com.example.hello HelloWorld
我添加Android平台,我尝试构建和构建成功,但当我模拟应用程序不启动并在屏幕上收到错误
不幸的是,HelloWorld已经停止了。
我发现的所有解决方案都不起作用。
这是从cordova自动处理的代码。
package com.example.hello;
import android.os.Bundle;
import org.apache.cordova.*;
public class HelloWorld extends CordovaActivity
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
super.init();
// Set by <content src="index.html" /> in config.xml
super.loadUrl(Config.getStartUrl());
//super.loadUrl("file:///android_asset/www/index.html");
}
}
答案 0 :(得分:0)
尝试: 尝试替换
的index.html
表示您的信息页。
public class enlacedata extends CordovaActivity
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
super.init();
// Set by <content src="index.html" /> in config.xml
//super.loadUrl(Config.getStartUrl());
//Change your index.html for your page name
super.loadUrl("file:///android_asset/www/index.html");
}
}