private Button button; private final CharSequence items[] = { "北京", "上海", "广州" }; @Override protected void onCreate(Bundle savedInstanceState) { super... ...
分类:
移动开发 时间:
2019-11-04 19:48:04
阅读次数:
306
private Button button; private final CharSequence[] items = { "北京", "上海", "广州" }; @Override protected void onCreate(Bundle savedInstanceState) { super... ...
分类:
移动开发 时间:
2019-11-04 19:36:32
阅读次数:
265
private Button button; private final CharSequence[] items = { "北京", "上海", "广州" }; @Override protected void onCreate(Bundle savedInstanceState) { super... ...
分类:
移动开发 时间:
2019-11-04 19:36:16
阅读次数:
373
centos7 安装包安装mysql8.0.18 rpm-bundle 官网下载 ...
分类:
数据库 时间:
2019-11-04 09:41:45
阅读次数:
110
在苹果的日常开发中,真机测试与打包等很多流程都会牵扯到各种证书,CertificateSigningRequest,p12等。但是很多相应的开发者并不理解iOS App应用签名的原理和流程。今天着重讲解一下此内容。 思考 在苹果的iOS系统出来之前,以前的主流程Mac OS/Window软件存在着安 ...
分类:
移动开发 时间:
2019-11-03 14:59:09
阅读次数:
119
const path = require('path'); module.exports = { entry: './src/index.js', output: { filename: 'bundle.js', path: path.resolve(__dirname, 'dist') }, mo... ...
分类:
Web程序 时间:
2019-10-31 23:46:40
阅读次数:
134
AVAudioPlayer 这个框架,去看看苹果开发文档,还比较容易理解,此处只是贴上代码作为一个记录而已。 ...
分类:
其他好文 时间:
2019-10-31 18:14:27
阅读次数:
118
es5-shim es5-shim.js 是指在模拟不兼容es5语法的浏览器, 典型的ie 6/7/8浏览器 extract-text-webpack-plugin 他会将所有required的*.css模块抽取到分离的CSS文件, 所以你的样式不会内联到JS bundle, 而是在一个单独的CSS ...
分类:
其他好文 时间:
2019-10-30 22:38:15
阅读次数:
123
打包的命令格式:webpack 要打包的未年检的路径 打包好的输出文件的路径 运行webpack .\src\main.js .\dist\bundle.js 提示错误,错误信息如下: WARNING in configurationThe 'mode' option has not been se ...
分类:
Web程序 时间:
2019-10-29 00:42:21
阅读次数:
420
package com.example.myapplication;import androidx.appcompat.app.AppCompatActivity;import android.content.Intent;import android.os.Bundle;import... ...
分类:
其他好文 时间:
2019-10-26 18:57:57
阅读次数:
82