进度条可以用于进行音量的调整 xml属性 android:max="100" 最大值是100 android:progress="30" 设置当前的值 java属性 seekBar.setProgress(90); 设置当前的值 seekBar.setMax(100); 设置最大值 设置监听事件 s ...
分类:
移动开发 时间:
2021-03-17 15:02:50
阅读次数:
0
Description: Given the root of a binary tree, return the bottom-up level order traversal of its nodes' values. (i.e., from left to right, level by lev ...
分类:
其他好文 时间:
2021-03-15 11:13:18
阅读次数:
0
1.忘记注释结束符 代码 a = b; /* 出现bug c = d; /* c = d将不会执行*/ 2.意外的赋值/意外的bool表达式 代码: if(a = b) c; /*a恒等于b,只有当b!=0的时候才执行*/ 再看下面的代码: if(0 < a < 5) c; /*布尔表达式恒为真*/ ...
分类:
其他好文 时间:
2021-03-10 13:28:05
阅读次数:
0
本文是数理统计的绪论内容,主要介绍了总体、样本和统计量的相关概念和性质。 ...
分类:
其他好文 时间:
2021-03-08 14:04:09
阅读次数:
0
The magic shop in Mars is offering some magic coupons. Each coupon has an integer N printed on it, meaning that when you use this coupon with a produc ...
分类:
其他好文 时间:
2021-03-06 14:44:48
阅读次数:
0
组件传参 散记点(父传子) v-bind传入Number,Function,Object等类型 <mycomponent :count="100" :data="{name: "wise"}" :list="['foo','bar']" :action="() => {}"/> 传递组件,组件变量形 ...
分类:
其他好文 时间:
2021-03-06 14:19:47
阅读次数:
0
class Foo { public static $flag_status = array( 'foo', 'bar' ); Const OT_UPGRADE_1 = 1; Const OT_UPGRADE_2 = 2; } // 静态属性 $name_attr = 'flag_status'; ...
分类:
其他好文 时间:
2021-03-05 13:15:20
阅读次数:
0
1.请按照这样的日期格式(xxxx-xx-xx)每日生成一个文件,例如今天生成的文件为2019-04-26.log, 并且把磁盘的使用情况写到到这个文件中。 import time, os new_time = time.strftime("%Y-%m-%d") disk_status = os.p ...
分类:
编程语言 时间:
2021-03-04 13:27:25
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi ...
分类:
编程语言 时间:
2021-03-04 13:25:22
阅读次数:
0
转自:https://mp.weixin.qq.com/s/MVSIRRzEvU9TxTe2MH0pAA 作者:Kubernetes Blog k8s技术圈 2020-12-03 Kubernetes 在 v1.20 版本之后将废弃 Docker 作为容器运行时。 事实上你完全不需要感到恐慌。 Do ...
分类:
Web程序 时间:
2021-03-03 11:49:07
阅读次数:
0