支持SharedPreference等使用到Application的相关 因为 SharedPreference 需要使用到 Application 来获取到,所以要想配合ViewModel还需要传入Application作为参数,当然,Jetpack已经为我们准备好了AndroidViewMode ...
分类:
移动开发 时间:
2020-01-18 16:53:08
阅读次数:
180
import React from 'react' import copy from 'copy-to-clipboard' export default class App extends React.Component { constructor(props) { super(props) th ...
分类:
其他好文 时间:
2020-01-18 14:27:25
阅读次数:
104
vertical-align(垂直对齐) baseline:默认。元素放置在父元素的基线上。super:垂直对齐文本的上标sub:垂直对齐文本的下标。 text-top:把元素的顶端与父元素字体的顶端对齐text-bottom:把元素的底端与父元素字体的底端对齐。 top:把元素的顶端与行中最高元素 ...
分类:
Web程序 时间:
2020-01-18 12:43:33
阅读次数:
93
一、linux cpu、内存、IO、网络的测试工具cpu测试工具1、Super Pi for linuxSuper PI是利用CPU的浮点运算能力来计算出π(圆周率),所以目前普遍被用户用做测试系统稳定性和测试CPU计算完后特定位数圆周率所需的时间。 ./super_pi 2020为位数。表示要算2 ...
分类:
系统相关 时间:
2020-01-17 12:00:12
阅读次数:
108
classMyEvent<T>extendsCustomEvent<T>{publicstaticreadonlyCMD:string="EVENT_NAME";publicconstructor($type:string,$data:T){super($type,{detail:$data,bubbles:true,cancelable:true,composed:tru
分类:
其他好文 时间:
2020-01-16 23:52:38
阅读次数:
240
1 1.1 roll out v. 推广,或实行 1.2 pilot v. 试行 n. 飞行员 1.3 bags for life 可重复使用的环保购物袋 2 2.1 How many times a year do the environment groups monitor plastic us ...
分类:
其他好文 时间:
2020-01-16 23:35:15
阅读次数:
112
win10已经抛弃了承载网络,现在的移动热点基于WiFi Direct技术,大部分新的网卡也都支持。在UWP平台下,取而代之的是TetheringNetwork,关于这东西的API可以在官网上查到,但是需要在powershell中才能调用,cmd已经不支持了。 具体使用参考: https://sup ...
分类:
移动开发 时间:
2020-01-14 16:18:30
阅读次数:
91
继承:一个对象直接使用另一个对象的属性和方法 在ES5的继承中,先创建子类的实例对象this,然后再将父类的方法添加到this上( Parent.apply(this) )。 ES6采用的是先创建父类的实例this(故要先调用 super( )方法),完后再用子类的构造函数修改this 上图的例子: ...
分类:
其他好文 时间:
2020-01-14 16:06:26
阅读次数:
58
代码: import 'package:flutter/material.dart'; class WarpDemo extends StatefulWidget { WarpDemo({Key key}) : super(key: key); @override _WarpDemoState cr ...
分类:
其他好文 时间:
2020-01-13 20:08:09
阅读次数:
75
最近看了《Head First Design Patterns》这本书。正如其名,这本书讲的是设计模式(Design Patterns),而这本书的第一章,讲的是很重要的一些设计原则(Design Principles)。 Identify the aspects of your applicati ...
分类:
其他好文 时间:
2020-01-13 13:06:44
阅读次数:
75