伪代码贴上 @Override protected void onCreate(Bundle savedInstanceState) { mWebView = (WebView) findViewById(R.id.webview); //获得webView initWebView(); } pri ...
分类:
移动开发 时间:
2021-06-25 17:11:53
阅读次数:
0
1.学习了这么多知识开始实战 部分代码:public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { / ...
分类:
其他好文 时间:
2021-06-21 21:06:22
阅读次数:
0
今天完成了昨天的初步构想,详细介绍见上一篇博客,具体项目结构和案例如下: MainActivity.java: package com.example.familybooks; import android.os.Bundle; import android.provider.ContactsCon ...
分类:
移动开发 时间:
2021-06-21 20:51:37
阅读次数:
0
冲刺任务:完成用户注册功能和数据库类 RegisterActivity.java package com.example.helloworld; import android.content.Intent; import android.os.Bundle; import android.text. ...
分类:
移动开发 时间:
2021-06-11 18:08:57
阅读次数:
0
一、mysql的安装 1,安装环境:centos 7.4 ,MySQL安装包:mysql-8.0.19-1.el7.x86_64.rpm-bundle.tar ,两台服务器的IP分别为:192.168.112.129 ;192.168.112.130 分别安装下MySQL 2,解压MySQL的安装包 ...
分类:
数据库 时间:
2021-06-02 13:16:45
阅读次数:
0
bundle是一个目录,其中包含了程序会使用到的资源. 这些资源包含了如图像,声音,文本文件,属性列表,语言包,编译好的代码,nib文件(用户也会把bundle称为plug-in). 对应bundle,cocoa提供了类NSBundle.我们的程序是一个bundle. 在Finder中,一个应用程序 ...
分类:
移动开发 时间:
2021-05-24 14:26:33
阅读次数:
0
github地址 https://github.com/rest-client/rest-client gemfile里添加 gem 'rest-client', '~> 2.0' 执行 bundle install 代码里 # 要请求接口地址 # 上传文件的key名字 # file 文件的绝对路径 ...
分类:
Web程序 时间:
2021-05-24 12:42:18
阅读次数:
0
func getTextFileStr(filename:String!) -> String! { if let path = Bundle.main.path(forResource: filename, ofType: "txt") { do { let data = try String(c ...
分类:
编程语言 时间:
2021-04-12 12:35:51
阅读次数:
0
在上一篇我们讲过,将src打包到dist,使用如下的命令: webpack ./src/main.js ./dist/bundle.js 但一般不会这样做,原因在于太长了,我们希望直接使用webpack来进行打包,这样就得在项目的根录下配置一个webpack.config.js文件,配置内容如下: ...
分类:
Web程序 时间:
2021-03-29 12:23:25
阅读次数:
0
1. Install git yum install git 2. Install Vundle.vim 2.1 mkdir ~/.vim/bundle 2.2 git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vund ...
分类:
系统相关 时间:
2021-03-17 14:46:30
阅读次数:
0