RN 实现简易浏览器
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
Dimensions,
StatusBar,
TouchableOpacity,
TextInput,
WebView
} from 'react-native';
var {width,height} =Dimensions.get('window')
export default class demo extends Component {
constructor(props){
super(props);
this.state={
source:{
uri:"https://www.baidu.com"
},
status:"NO page Loaded",
backBuutonEnabled:false,
forwardButtonEnabled:false,
}
this.inputURL="";
this.goBack=this.goBack.bind(this);
this.goForward=this.goForward.bind(this);
this.goButton=this.goButton.bind(this);
this.stateChange=this.stateChange.bind(this);
this.onMessage=this.onMessage.bind(this)
}
onMessage(data){
console.log("网页的数据");
}
stateChange(navState){
console.log("网页路由数据");
console.log(navState);
this.setState({
backBuutonEnabled:navState.canGoBack,
forwardButtonEnabled:navState.canGoForward,
status:navState.title,
})
}
goBack(){
//让webView组件退回
this.refs.webViewRef.goBack();
}
//网页前进
goForward(){
this.refs.webViewRef.goForward();
}
//searh
goButton(){
console.log(this.inputURL.toLowerCase());
//在input和Go都调用这个方法
let uri=this.inputURL.toLowerCase();
if(uri==this.state.source.uri){
//当网页和当前的网址相同时候 重载网址
this.refs.webViewRef.reload();
console.log("zhogzao");
}else{
console.log("加载新网页");
let source={};
source.uri=uri;
this.setState({
source
})
} }
render() {
return (
<View style={styles.container}>
<StatusBar hidden={true}/>
<View style={styles.addressBarRow}>
<TouchableOpacity
onPress={this.goBack}
style={this.state.backBuutonEnabled?styles.navButton:styles.disableButton}>
<Text>{'<'}</Text>
</TouchableOpacity>
<TouchableOpacity
onPress={this.goForward}
style={this.state.forwardButtonEnabled?styles.navButton:styles.disableButton}>
<Text>{'>'}</Text>
</TouchableOpacity>
<TextInput ref="urlInputRef"
autoCapitalize="none"
style={styles.addressInput}
defaultValue={this.state.url}
onSubmitEditing={this.goButton}
onChangeText={(newText)=>this.inputURL=newText}
clearButtonMode='while-editing'
/>
<TouchableOpacity
onPress={this.goButton}
style={styles.goButton}>
<Text>Go!</Text>
</TouchableOpacity>
</View>
<WebView
ref="webViewRef"
style={styles.webView}
source={this.state.source}
javaScriptEnabled={true}
// 仅限Android平台。指定是否开启DOM本地存储
domStorageEnabled={true}
//网页导航 返回的是一些参数对象
onNavigationStateChange={this.stateChange}
// 强制WebView在第一次加载时先显示loading视图。默认为true
startInLoadingState={true}
//在网页端注入函数 这里得到返回的数据 从而达到RN和网页端的数据的交换
// onMessage={this.onMessage}
/>
<View style={styles.statusBar}>
<Text style={styles.statusBarText}>{this.state.status}</Text>
</View>
</View>
);
}
} const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: 'blue',
},
addressBarRow:{
flexDirection:'row',
padding:8,
},
navButton:{
width:20,
padding:3,
marginRight:20,
alignItems:'center',
justifyContent:'center',
backgroundColor:'#fff',
borderColor:'transparent',
borderRadius:3
},
disableButton:{
width:20,
padding:3,
marginRight:20,
alignItems:'center',
justifyContent:'center',
backgroundColor:'grey',
borderColor:'transparent',
borderRadius:3
},
addressInput:{
backgroundColor:'#fff',
borderColor:'transparent',
borderRadius:3,
height:24,
paddingLeft:10,
paddingTop:3,paddingBottom:3,
flex:1,
fontSize:14,
},
goButton:{
height:24,
padding:3,
marginLeft:8,
alignItems:'center',
justifyContent:'center',
borderColor:'transparent',
borderRadius:3,
alignSelf:'stretch'
},
webView:{
backgroundColor:'#fff',
height:350
},
statusBar:{
flexDirection:'row',
alignItems:'center',
paddingLeft:5,
height:22
},
statusBarText:{
color:'#fff',
fontSize:13
}
}); AppRegistry.registerComponent('demo', () => demo);
RN 实现简易浏览器的更多相关文章
- 第4课 简易浏览器-WebViewer组件的使用方法
做一个手机浏览器,需要哪些组件呢? 一.组件设计 二.组件属性及命名修改 三.逻辑设计 1.导航按钮代码:前进.后退.主页 2.访问网页按钮 1)根据用户在地址栏输入的地址书写,判断书写中是否含有“h ...
- python3用pyqt5开发简易浏览器
http://python.jobbole.com/82715/ 在这篇教程中,我们会用 Python 的 PyQt 框架编写一个简单的 web 浏览器.关于 PyQt ,你可能已经有所耳闻了,它是 ...
- (五十九)iOS网络基础之UIWebView简易浏览器实现
[UIWebView网络浏览器] 通过webView的loadRequest方法可以发送请求显示相应的网站,例如: NSURL *url = [NSURL URLWithString:@"h ...
- 简易浏览器App webview
使用 public class MainActivity extends Activity { @Override protected void onCreate(Bundle sav ...
- HTTP协议之 简易浏览器(3)--转载
简单的说,今天的全部工作就是 我的目的只有两个 1.加深对http协议的理解 2.深化对B/S结构的认识. 代码 1 /* 2 这个程序把主机地址写死了, 3 想更像的话,可以在加个输入.然后根据 ...
- C# 封装miniblink 使用HTML/CSS/JS来构建.Net 应用程序界面和简易浏览器
MiniBlink的作者是 龙泉寺扫地僧 miniblink是什么? (抄了一下 龙泉寺扫地僧 写的简洁) Miniblink是一个全新的.追求极致小巧的浏览器内核项目,其基于chromium最新 ...
- 写一个简易浏览器、ASP.NET核心知识(3)
前言 先在文章前面说好了,省得大家发现我根本没有这样的头发,duang的一下一堆人骂我. 这篇文章的标题有点大,其实挺low的,我需要在开头解释一下.我这里只想写一个小的控制台,旨在模拟浏览器的htt ...
- 手机 简易浏览器 WebView的基本使用 返回 缓存 进度条
public class MainActivity extends AppCompatActivity { private WebView webView; private String url = ...
- 【原创】闲来无事,用Winform写了个简易浏览器
核心是利用了winform自带的WebBrowser控件,修改了下IE内核的版本,目前还是单线程的,逻辑挺简单的,萌新都能看懂. 废话不多说,上代码,附打包project. 链接:https://pa ...
随机推荐
- HTTPS实战之单向验证和双向验证
转载自:https://mp.weixin.qq.com/s/UiGEzXoCn3F66NRz_T9crA 原创: 涛哥 coding涛 6月9日 作者对https 解释的入目三分啊 (全文太长,太懒 ...
- JDK源码之Lock接口
public interface Lock { //阻塞的获取锁,如果获取到锁,从该方法返回 void lock(); //可中断的获取锁,该方法会响应中断,在锁的获取中可以中断当前线程 void l ...
- GitHub使用笔记1:git客户端配置多ssh key
公司用gitlab 外网的github同时配置 这样就导致我们要配置不同的ssh-key对应不同的环境. 具体操作步骤如下: 1:生成一个公司用的SSH-Key $ ssh-keygen -t rsa ...
- bzoj 4585 烟火表演 - 动态规划 - 可并堆
题目传送门 传送门I 传送门II 题目大意 给定一棵带边权有根树,修改一条边的边权的代价是修改前和修改后的值的绝对值之差.不能将一条边的边权改为负数.问使得根节点到所有叶节点的距离相等的最小代价. 当 ...
- DOM元素加载之前执行的jQuery代码
<script type="text/javascript"> (function() { alert("DOM还没加载哦!"); })(jQuer ...
- delete指针
是释放指针所指向的内存,而不是删除指针本身
- topcoder srm 715 div1 -23
1.一个计算器,它执行的是一个只包含‘+’,‘-’的字符串$s$.初始化值为0,每遇到一个‘+’增加1,否则减少1.并保存运算过程的最大最小值$Max,Min$,最后的答案是$Max-Min$.比如$ ...
- Python3 tkinter基础 Frame event.x 输出鼠标左右键点击的位置
Python : 3.7.0 OS : Ubuntu 18.04.1 LTS IDE : PyCharm 2018.2.4 Conda ...
- 快速自动安装dart
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat Non ...
- 关于no matching key exchange method found. Their offer: diffie-hellman-group1-sha1的解决办法
原文链接:https://mycyberuniverse.com/error/no-matching-key-exchange-method-found-openssh7.html What caus ...