提交了几次都被feedback,以下均为本人碰到过得问题,希望对大家解决提交问题有帮助
Number one:PLA 3.3.12
We found your app uses the iOS Advertising Identifier but does not include ad functionality. This does not comply with the
te...
分类:
移动开发 时间:
2014-08-20 16:28:33
阅读次数:
444
Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations:getandset.get(key)- Get the valu...
分类:
其他好文 时间:
2014-08-20 14:04:32
阅读次数:
250
1、ORA-00942: table or view does not exist指的你要操作的表尚未存在,需要先create出来先。2、ORA-00922: missing or invalid option指的是有语法错误。遗漏了分号什么的3、Warning: Procedure created...
分类:
数据库 时间:
2014-08-20 01:13:16
阅读次数:
539
转:CentOS6.4安装中文输入法su rootyum install "@Chinese Support"
分类:
其他好文 时间:
2014-08-19 22:06:05
阅读次数:
239
阅读ArrayBlockingQueue源码,很容易知道有界阻塞队列的长度至少为1,也就是至少能缓存下一个数据。SynchronousQueue的javadoc文档提到A synchronous queue does not have any internal capacity, not even a capacity of one.也就说同步队列的容量是0,不会缓存数据。
长度为1的阻塞队列和...
分类:
其他好文 时间:
2014-08-19 20:56:35
阅读次数:
298
原文:如何设置安装界面左上角的自定义图标上一篇:sqlserver显示数据库和表及列名 DialogSetInfo(DLG_INFO_ALTIMAGE,SUPPORTDIR^"logo.BMP",TRUE); logo.BMP要预先Import到Support File下下一篇: 使用strtuts...
分类:
其他好文 时间:
2014-08-19 18:43:55
阅读次数:
198
大家都在为项目开发成功而喜悦,但可不知成功的路上是会经常出错的,下面是我碰到的一些错误集合!【错误信息】[2011-01-19 16:39:10 - ApiDemos] WARNING: Application does not specify an API level requirement![2...
分类:
移动开发 时间:
2014-08-19 18:11:25
阅读次数:
313
SwipeRefreshLayout 是谷歌官方下拉刷新控件,4.0以下的版本需要用到 android-support-v4.jar包才能用到
android-support-v4.jar 包下载地址:http://download.csdn.net/detail/h7870181/7784247
官网API地址:https://developer.android.com/reference...
分类:
移动开发 时间:
2014-08-19 16:32:44
阅读次数:
304
官网guide:http://developer.android.com/training/implementing-navigation/nav-drawer.html
官网示例:NavigationDrawer.zip
android.support.v4.widget.DrawerLayout 抽屉layout。该widget只能实现从左向右、从右向左
openD...
分类:
移动开发 时间:
2014-08-19 16:32:05
阅读次数:
238
Implement wildcard pattern matching with support for'?'and'*'.'?' Matches any single character.'*' Matches any sequence of characters (including the e...
分类:
其他好文 时间:
2014-08-19 14:24:14
阅读次数:
182