它只显示一个空白屏幕,但是当我点击某个部分时,它会尝试打开一个链接,以便页面响应但没有显示,我想要加载的网页是partyhard.fr
这是apk
这是代码(mainactivity.java)
protected void recycleDefaultImage() {
Drawable imageDrawable = imageView.getDrawable();
imageView.setImageDrawable(null); //this is necessary to prevent getting Canvas: can not draw recycled bitmap exception
if (imageDrawable!=null && imageDrawable instanceof BitmapDrawable) {
BitmapDrawable bitmapDrawable = ((BitmapDrawable) imageDrawable);
if (!bitmapDrawable.getBitmap().isRecycled()) {
bitmapDrawable.getBitmap().recycle();
}
}
}
感谢您的帮助,不要忘记我刚接触编码:)
答案 0 :(得分:0)
在主布局中创建webview布局
<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
使用此
更改Mainactivity类中的on create方法 WebView webview = new WebView(this);
setContentView(webview);
webview.getSettings().setJavaScriptEnabled(true);
webview.loadUrl("http://www.example.com/");
在您的清单
中允许此权限 <uses-permission android:name="android.permission.INTERNET" />