//
监听listview滚到最底部mIndexList.setOnScrollListener(new OnScrollListener() { @Override
public void onScrollStateChanged(AbsListView view, int scrol...
分类:
移动开发 时间:
2014-04-28 09:38:05
阅读次数:
2001
1 #include 2 #include 3 using namespace std; 4
class people 5 { 6 public: 7 string name; 8 int age; 9 virtual void print();10
};11 12...
分类:
其他好文 时间:
2014-04-28 09:04:54
阅读次数:
690
IOS 的动画放大与缩小,并非按照找它的中心点放大和缩小,而是左上角
。我分析了下原来是Autolayout 与View Transforms的冲突造成的。- (void)
addSubviewWithZoomInAnimation:(UIView*)view duration:(float)sec...
分类:
移动开发 时间:
2014-04-27 21:10:53
阅读次数:
1047
/*
功能:实现对眼睛、脸部的跟踪。
版本:1.0
时间:2014-4-27
*/
#include
#include
#include
#include
#include
#include
using namespace std;
using namespace cv;
void detectEyeAndFace( Mat frame );
//将下面两个文件复制到当前工...
分类:
其他好文 时间:
2014-04-27 20:40:47
阅读次数:
659
HelloWorldScene.h
添加如下代码:
protected:
void onDraw(const kmMat4 &transform, bool transformUpdated);
CustomCommand _customCommand;
HelloWorldScene.cpp
void HelloWorld::draw(cocos2d::Rende...
分类:
其他好文 时间:
2014-04-27 20:38:07
阅读次数:
679
有个项目需要实现push的方式从左向右,现在记录一下我的学习过程
push 从左向右
- (void)settingBtnMethod{
CATransition *transition = [CATransition animation];
transition.duration = 0.5f;
transition.timingFunction ...
分类:
其他好文 时间:
2014-04-27 18:53:32
阅读次数:
577
/**
*
* @param partsPaths 要合成的音频路径数组
* @param unitedFilePath 输入合并结果数组
*/
public void uniteWavFile(String[] partsPaths, String unitedFilePath) {
byte byte1[] = getByte(partsPaths[0]);
...
分类:
编程语言 时间:
2014-04-27 17:39:03
阅读次数:
556