是否可以在 Android 2.2 中用 html 页面替换启动图像?
super.setIntegerProperty("loadUrlTimeoutValue", 60000);
super.setIntegerProperty("splashscreen", R.drawable.splash);
userIDPlugin=new UserIdPlugin();
super.loadUrl("file:///android_asset/www/index.html",60000);
是否可以在 Android 2.2 中用 html 页面替换启动图像?
super.setIntegerProperty("loadUrlTimeoutValue", 60000);
super.setIntegerProperty("splashscreen", R.drawable.splash);
userIDPlugin=new UserIdPlugin();
super.loadUrl("file:///android_asset/www/index.html",60000);
你可以使用这个问题的答案。只需编辑 splash.xml 并将 WebView 放入其中。
是的,你可以,用其中的 Webview 替换启动图像。
您可以(按照其他答案的建议),但请记住,如果 HTML 是从互联网上提取的,那么用户将开始盯着一个空白屏幕,只要它需要加载一些东西......所以你会想要在 web 视图或进度对话框或其他东西上放置另一个视图,以向用户提供一些关于正在发生的事情的指示,并在页面加载时将其关闭。