摘要:
要注意的是fragment事实上是有两个版本号的,一个是 import android.support.v4.app.Fragment; 另外一个是 import android.app.Fragment; 这两个版本号的fragment是不会兼容的。也就是说要不就全用fragment,要不就全用v 阅读全文
摘要:
要注意的是fragment事实上是有两个版本号的,一个是 import android.support.v4.app.Fragment; 另外一个是 import android.app.Fragment; 这两个版本号的fragment是不会兼容的。也就是说要不就全用fragment,要不就全用v 阅读全文
摘要:
Follow up for problem "Populating Next Right Pointers in Each Node". What if the given tree could be any binary tree? Would your previous solution sti 阅读全文
摘要:
这一篇文章专门整理一下研究过的Android面试题,内容会随着学习不断的添加,假设答案有错误,希望大家能够指正 1.简述Activity的生命周期 当Activity開始启动的时候,首先调用onCreate()。onStart()。onResume()方法,此时Activity对用户来说,是可见的状 阅读全文
摘要:
Oracle enterprise cloud control 12c的安装是一个比較复杂的过程,由于他须要依赖于Oracel database以及Oracle Weblogic。如今Oracle已经整合了Weblogic到cloud control安装包中还是省事非常多,本文是基于Oracle L 阅读全文
摘要:
找了一些帖子 没搞出来,后来找到原因了 如今的cocos2d版本号在xcode.5上 没右模版了。 用命令行 来运行。看了官方的文档。最终攻克了~~~ 对于自己解决的问题都会感到点兴奋。。。 创建新project: 这个时官方给出 命令行 样例: $ cd cocos2d-x $ ./setup.p 阅读全文
摘要:
.input-group——设置div为输入框组; .input-group-lg、.input-group-sm、.input-group-xs——改变输入框组的尺寸; .input-group-addon——在输入框前或后加入额外内容; .input-group-btn——在输入框前或后加入bu 阅读全文
摘要:
偶然间看到这篇文章。感觉博主写的挺不错的,假设你想做web前端project师的话,建议您阅读下面这篇文章,事实上web前端project师所做的工作事实上就是站点设计,有些小公司的美工事实上就是做web前端的。这篇文章对于想学web前端工作的人有非常大的帮助。假设您是做SEO的。也建议您学习下博主 阅读全文
摘要:
【问题描写叙述】 Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: You may assume that nums1 has enough space 阅读全文
摘要:
题意:给出一个字符串和若干个模板,求出在文本串中出现的模板个数。 思路:由于有可能有反复的模板,trie树权值记录每一个模板出现的次数就可以。 #include<cstdio> #include<cstring> #include<cmath> #include<cstdlib> #include< 阅读全文
摘要:
C. Cardiogram time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output In this problem, your task 阅读全文
|