46.Android 自己定义Dialog Android 自己定义Dialog 前言 提示Dialog 提示Dialog 效果图 菜单Dialog 菜单Dialog 效果图 DialogActivity 前言 提供两套自己定义Dialog模板 第一种。提示Dialog,有消失时间。 另外一种,菜单 ...
分类:
移动开发 时间:
2017-07-04 20:18:29
阅读次数:
236
1、下载安装android-studio-bundle 地址:https://developer.android.com/sdk/index.html 注意:指定android sdk和android studio的安装路径。 在完毕之后第一次启动的时候会首先显示Fetching Android S ...
分类:
移动开发 时间:
2017-07-04 16:37:19
阅读次数:
140
题目 You are given a string, s, and a list of words, words, that are all of the same length. Find all starting indices of substring(s) in s that is a co ...
分类:
其他好文 时间:
2017-07-03 19:54:48
阅读次数:
173
在使用jQuery类库实现tab功能时,是获取鼠标在mousenter或click时的index值,然后切换到当前的标题和内容,把其他的标题和内容的状态去掉:$(‘.tab.title‘).find(‘.item‘)
.removeClass(‘current‘).eq(index).addClass(‘current‘);//为index位置的title添加current$(‘.tab.cont..
分类:
其他好文 时间:
2017-07-03 15:02:21
阅读次数:
234
0x01:简单介绍 Unity的脚本继承了Monobehaviour类,在脚本中定义函数: void FixedUpdate(){} void Update(){} void LateUpdate(){} 脚本假设是激活的,这三个函数会被上层逻辑每帧调用,FixedUpdate调用的次数和fixed ...
分类:
编程语言 时间:
2017-07-03 12:25:45
阅读次数:
159
function busUpLoadImg(postUrl,id) { .......//省略部分不用修改 uploader.on('uploadSuccess', function(file) { $('#' + file.id).addClass('upload-state-done'); //... ...
分类:
Web程序 时间:
2017-07-02 16:51:41
阅读次数:
611
hdu 5400 Arithmetic Sequence 分析: 首先预处理出来出ii这个位置向前d_1 d?1的等差序列; 向后d_2 d?2的等差数列能延续到多长,记作l_i,r_i l?i,r?i 假设d_1!=d_2 d?1≠d2。那么枚举中间位置,答案为l_i*r_i l?i?r?i 假设 ...
分类:
其他好文 时间:
2017-07-02 16:17:14
阅读次数:
110
题目信息 1062. Talent and Virtue (25) 时间限制200 ms 内存限制65536 kB 代码长度限制16000 B About 900 years ago, a Chinese philosopher Sima Guang wrote a history book in ...
分类:
编程语言 时间:
2017-07-02 11:36:23
阅读次数:
180
此款进度条实现的功能: 1.利用了bootstrap的进度条组件。 a.在最外层的<div>中加入class .progress,在里层<div>加入class .progress-bar从而实现基本的进度条。 b.在外层<div>中加入class .progress-striped实现条纹进度条。 ...
分类:
Web程序 时间:
2017-07-01 11:56:02
阅读次数:
228