我有一个嵌入 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 扩展而来的。我怎么解决这个问题?