摘要:
利用定时器,实现循环轮播,很简单;只需在定时器的消息里加如下代码即可: int count = adapter.getCount(); if (count > 1) { // 多于1个,才循环 int index = viewPager.getCurrentItem(); index = (inde 阅读全文
摘要:
软件开发中的完成测试环境所包括的环节包括:UT、IT、ST、UATUT = Unit Test 单元测试 IT = System Integration Test 集成测试ST = System Test 系统测试 UAT = User Acceptance Test 用户接受测试(俗称:验收测试) 阅读全文