webView
程序员文章站
2022-04-19 23:05:52
...
设置
public class SecondActivity extends BaseActivity {
WebView webview;
@Override
protected int conview() {
return R.layout.activity_second;
}
@Override
protected void initView() {
webview = findViewById(R.id.webview);
Intent intent = getIntent();
String name = intent.getStringExtra("name");
webview.loadUrl(name);
webview.setWebViewClient(new WebViewClient(){
@Override
public boolean shouldOverrideKeyEvent(WebView view, KeyEvent event) {
return super.shouldOverrideKeyEvent(view, event);
}
});
}
@Override
protected void initData() {
}
}
布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".SecondActivity">
<WebView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/webview"/>
</RelativeLayout>
上一篇: 男生想了想回答
下一篇: WebView使用总结
推荐阅读
-
Android studio点击跳转WebView详解
-
WebView设置WebViewClient的方法
-
Android中的webview支持页面中的文件上传实例代码
-
Android的webview支持HTML5的离线应用功能详细配置
-
android WebView组件使用总结
-
iOS WebView中使用webp格式图片的方法
-
iOS中精确计算WebView高度的方法示例
-
android中Webview实现截屏三种方式小结
-
Android使用内置WebView打开TextView超链接的实现方法
-
Android编程使用WebView实现与Javascript交互的方法【相互调用参数、传值】