0

我有一个嵌入 CordovaWebView 的应用程序。根据指令,在这种情况下,我不应该从 DriodGap 扩展我的活动。

public class CordovaViewTestActivity extends Activity implements CordovaInterface {
    CordovaWebView cwv;
    /* Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        cwv = (CordovaWebView) findViewById(R.id.tutorialView);
        cwv.loadUrl("file:///android_asset/www/index.html");
    }
}

但我需要使用splashscreem。根据指示,我必须这样做:

super.setIntegerProperty("splashscreen", R.drawable.splash);
super.loadUrl("file:///android_asset/www/index.html", 10000);

但我的活动不是从 DroidGap 扩展而来的。我怎么解决这个问题?

4

2 回答 2

0

编辑在 Eclipse 的 src 文件夹中找到的项目的主要 Java 文件:

请执行下列操作:

  • 添加导入 org.apache.cordova.*;

  • 将类的扩展从Activity更改为DroidGap

更多细节...

在此处输入图像描述

于 2013-05-08T04:42:49.493 回答
0

您可以实现常规的 android 启动画面。这是关于 android 启动画面的一个很好的 stackoverflow 讨论:如何制作启动画面?

给人一种闪屏印象的另一种方法是让你的登陆页面看起来像一个闪屏并插入一个javascript函数,该函数将在几秒钟后调用并调用你当前的登陆页面(这样你就有了“闪屏”适用于所有平台)。

javascript 函数可能如下所示(假设您的主页是“index.html”:

function loadMainPage(){
 setTimeout(function(){this.document.location.href = "index.html"}, 2000);
}
于 2013-06-03T21:04:29.307 回答