使用 Webview 时出现空白屏幕。我看到很多关于这个问题的话题,但没有一个解决。所以我尝试了另一个......这是我第一次在 android 上进行项目。
好的,我优化了我的代码,但它仍然在模拟器上显示灰屏,在设备上显示白屏。有人帮帮我。
public class Video extends Activity{
private WebView video;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.videoview);
video = (WebView)findViewById(R.id.webshow);
video.getSettings().setJavaScriptEnabled(true);
video.getSettings().setPluginState(WebSettings.PluginState.ON);
/*video.getSettings().setPluginsEnabled(true);*/
String html = "http://www.twitch.tv/wingsofdeath";
final String temp = "<div class=\"live_site_player_container swf_container js-player-container\" data-channel=\"wingsofdeath\" id=\"standard_holder\" style=\"width: 100%; height: 211px;\">\n" +
"<object type=\"application/x-shockwave-flash\" name=\"live_site_player_flash\" data=\"http://www-cdn.jtvnw.net/swflibs/TwitchPlayer.swf\" width=\"100%\" height=\"100%\" id=\"live_site_player_flash\" style=\"visibility: visible;\"><param name=\"allowNetworking\" value=\"all\"><param name=\"allowFullScreen\" value=\"true\"><param name=\"allowScriptAccess\" value=\"always\"><param name=\"wmode\" value=\"opaque\"><param name=\"flashvars\" value=\"team=solomid&auto_play=true&hide_chat=true&publisherGuard=null&publisherTimezoneOffset=420&channel=wingsofdeath&hostname=www.twitch.tv&loadCallback=Twitch.player._twitchPlayerLoaded&backgroundImageUrl=http://static-cdn.jtvnw.net/jtv_user_pictures/anonymous_monkey-320x240.jpg\"></object>\n" +
"</div>";
video.loadDataWithBaseURL (html, temp, "application/x-shockwave-flash", "UTF-8","");
}}
我做错了什么?有人谈论使用 webchromeclent。请解释一下。(清单和另一个..是对的)谢谢。
我可以获取有关“file///android_asset”其本地html文件的信息吗?如果可能的话,我如何在那里加载我的数据?