码迷,mamicode.com
首页 >  
搜索关键字:hide    ( 2565个结果
android 如何引用@hide(隐藏)的类,方法和常量?
最近在处理SD卡的读写问题,本地Elipse能跑的程序提交到服务器上的时候,报错,找不到import的类,还有一些方法也是找不到,利用sourceInsight搜了源码发现都是用了@hide标记的类和方法。 /** * Description of a storage volume and its capabilities, including the * filesystem path w...
分类:移动开发   时间:2015-03-20 22:09:47    阅读次数:172
[LeetCode] Sort List 排序 sort
Sort a linked list inO(nlogn) time using constant space complexity.Hide TagsLinked ListSort 基于单项链表的排序,时间为nlogn ,O(1)空间,其实及将数组的快速排序用链表实现,并用递归来维护拆分与合并。....
分类:编程语言   时间:2015-03-20 14:13:30    阅读次数:135
BZOJ 1095 ZJOI2007 Hide 捉迷藏 动态树分治+堆
题目大意:给定一棵树,一开始每个点都是黑点,多次改变某个点的状态或询问距离最远的两个黑点的距离 《珍爱生命远离STL可是我还是可耻地用了STL系列》 传说中的动态树分治。。。其实并没有那么神嘛= = ↑别听这傻瓜瞎说这货被STL卡了一天QAQ 我们把分治过程中遍历过的重心都连起来 上一层的重心链接下一层的重心 可以得到一棵新的树 下面我们开始讨论这棵新树 显然这棵树的高度不会超...
分类:其他好文   时间:2015-03-19 22:14:21    阅读次数:213
jQuery语法、选择器和事件
jQuery 语法是通过选取 HTML 元素,并对选取的元素执行某些操作。语法:$(selector).action()美元符号定义 jQuery选择符(selector)"查询"和"查找" HTML 元素jQuery 的 action() 执行对元素的操作实例:$(this).hide() - 隐...
分类:Web程序   时间:2015-03-18 15:21:15    阅读次数:213
unity简单设计模式---CoroutineScheduler
Contents [hide] 1 Description2 Usage3 Code 3.1 CoroutineScheduler.js3.2 CoroutineNode.js3.3 CoroutineSchedulerTest.cs3.4 CoroutineScheduler.cs3.5 CoroutineNode.cs4 Additional Implementation C# 4.1 S...
分类:编程语言   时间:2015-03-15 23:04:33    阅读次数:215
unity简单设计模式---AManagerClass
Contents [hide] 1 Warning2 Description3 Usage4 C# - AManager.cs5 Boo - AManager.boo6 Javascript - AManager.js Warning This article is quite dated and missing a bit of explaining. Read in conjunction...
分类:编程语言   时间:2015-03-15 21:23:30    阅读次数:225
[LeetCode] Convert Sorted Array to Binary Search Tree
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.Hide TagsTreeDepth-first Search 实现方法有两种,一种是二叉树自下往上 实....
分类:其他好文   时间:2015-03-13 18:28:44    阅读次数:109
ShowWindow(SW_HIDE)
BOOL ShowWindow( int nCmdShow );Return Value作用:如果窗口原来可见,则返回非零值;如果CWnd原来是隐藏的,则返回0参数:Parameters nCmdShow指定了CWnd应如何被显示。它必须是下列值之一:SW_HIDE 隐...
分类:Windows程序   时间:2015-03-12 22:13:09    阅读次数:230
JQ 使用toggle实现DIV的隐藏和显示
$('.submenuA').toggle( function () { $(this).next('div').show(); }, function () { $(this).next('div').hide(); })
分类:其他好文   时间:2015-03-11 16:34:59    阅读次数:126
[Learn AF3]第七章 App framework组件之Popup
AF3的弹出对话框Popup 组件名称:Popup 是否js控件:是,$.afui.popup 说明:af3中的popup和af2中相比变化不大,依然是通过插件popup来实现的 方法:show () 显示popup对话框hide () 隐藏popup对话框 构造参...
分类:移动开发   时间:2015-03-11 01:55:05    阅读次数:188
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!