Android scrollview:在一段时间内自动向下滚动

时间:2015-12-30 11:09:33

标签: android xml scrollview game-physics autoscroll

我目前正在开发一个应用程序,这个:http://90kids.com/level-dash/我无法弄清楚如何让我的屏幕自动滚动。任何帮助表示赞赏

1 个答案:

答案 0 :(得分:2)

创建计时器任务在每个特定时间后滚动视图。 参见下面的例子

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *basePath = ([paths count] > 0) ? [paths objectAtIndex:0] : nil;
NSString *pdfFilePath =[basePath stringByAppendingPathComponent:@"myPDF.pdf"];
NSLog(@"pdf file %@",pdfFilePath);