码迷,mamicode.com
首页 >  
搜索关键字:bottom bar    ( 10976个结果
iOS开发之iOS7设置状态栏字体颜色
应用中登陆界面颜色较浅,状态栏字体颜色为黑色,跳转到主界面之后,界面颜色较深,状态栏颜色随之变成白色。但是再重新返回登陆界面后,状态栏字体颜色并没有改成黑色,特别别扭。plist文件里将View controller-based status bar appearance改为NO然后在view co...
分类:移动开发   时间:2014-06-16 09:06:09    阅读次数:285
Android actionBar与Fragment结合使用Demo
本文介绍ActionBar与Fragment结合使用的一个实例,ActionBar是一个标识应用程序和用户位置的窗口功能,并且给用户提供操作和导航模式。  Action bar的主要用途是:         1.  提供一个用于识别应用程序的标示和用户的位置的专用空间。          这个空间的左边是应用的图标或logo,以及Activity的标题。但是,如果...
分类:移动开发   时间:2014-06-15 19:05:31    阅读次数:300
【Leetcode】Minimum Path Sum
Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path. Note: You can only move either down or right at...
分类:其他好文   时间:2014-06-13 20:36:56    阅读次数:280
ios7 Cocos2dx 隐藏状态栏设置
环境:cocos2d-x 2.1.5ios7.0在info.plist 添加UIViewControllerBasedStatusBarAppearance(View controller-based status bar appearance) 设置为NO 即可
分类:移动开发   时间:2014-06-13 19:13:49    阅读次数:355
querySelectorAll的BUG
querySelector和querySelectorAll是W3C提供的新的查询接口目前IE8/9及Firefox/Chrome/Safari/Opera的最新版已经支持它们。但是Element.querySelectorAll有个bug asfd var bar = ...
分类:其他好文   时间:2014-06-13 00:13:52    阅读次数:340
[leetcode]Trapping Rain Water @ Python
原题地址:https://oj.leetcode.com/problems/trapping-rain-water/题意:Givennnon-negative integers representing an elevation map where the width of each bar is ...
分类:移动开发   时间:2014-06-12 23:35:22    阅读次数:409
iOS开发:使用Tab Bar切换视图
iOS开发:使用Tab Bar切换视图上一篇文章提到了多视图程序中各个视图之间的切换,用的Tool Bar,说白了还是根据触发事件使用代码改变Root View Controller中的Content View。这次,我们还是讲一讲切换视图,不过这次使用的是Tab Bar。这次要写的程序运行起来的效...
分类:移动开发   时间:2014-06-12 22:20:27    阅读次数:541
一入python深似海--while-loop与for-loop
while loops 定义与实例 i = 0 numbers = [] while i < 6: print "At the top i is %d" % i numbers.append(i) i = i + 1 print "Numbers now: ", numbers print "At the bottom i is %d" % ...
分类:编程语言   时间:2014-06-11 00:59:17    阅读次数:410
Largest Rectangle in Histogram
题目 Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histogram. Above is a histogram w...
分类:其他好文   时间:2014-06-10 15:34:02    阅读次数:252
栈的实现与操作(C语言实现)
栈的定义  1, 栈是一种特殊的线性表  2,栈仅能在线性表的一端进行操作  3,栈顶(Top): 允许操作的一端 允许操作的一端  4,栈底(Bottom): ,不允许操作的一端 不允许操作的一端 这里我们实现了顺序栈和链式栈~~~~...
分类:编程语言   时间:2014-06-10 13:49:52    阅读次数:265
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!