码迷,mamicode.com
首页 >  
搜索关键字:bottom bar    ( 10976个结果
Android基础-进度条(SeekBar)
进度条可以用于进行音量的调整 xml属性 android:max="100" 最大值是100 android:progress="30" 设置当前的值 java属性 seekBar.setProgress(90); 设置当前的值 seekBar.setMax(100); 设置最大值 设置监听事件 s ...
分类:移动开发   时间:2021-03-17 15:02:50    阅读次数:0
Leetcode 107. Binary Tree Level Order Traversal II
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
C编程常见问题总结
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
数理统计01:数理统计绪论
本文是数理统计的绪论内容,主要介绍了总体、样本和统计量的相关概念和性质。 ...
分类:其他好文   时间:2021-03-08 14:04:09    阅读次数:0
1037 Magic Coupon (25 分)
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
vue3 组件传参
组件传参 散记点(父传子) 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
常用Python脚本
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
JavaScript + html 制作钟表
<!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
(转) Don't Panic: Kubernetes and Docker
转自: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
10976条   上一页 1 ... 7 8 9 10 11 ... 1098 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!