|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 检查是否需要继续写卡(根据stepNo判断) |
|
|
// 检查是否需要继续写卡(根据stepNo判断) |
|
|
// stepNo是"下一步骤号",如果大于0表示还有下一步,如果为0或null表示完成 |
|
|
// stepNo是"下一步骤号",如果大于0表示还有下一步,如果为0或null表示完成 |
|
|
if (stepNo <= 100 && stepNo > 0) { |
|
|
|
|
|
|
|
|
if (stepNo > 0 && stepNo != 100) { |
|
|
// 需要继续写卡,更新当前步骤号并递归调用 |
|
|
// 需要继续写卡,更新当前步骤号并递归调用 |
|
|
currentStepNo = stepNo; |
|
|
currentStepNo = stepNo; |
|
|
Log.i(this.getClass().getSimpleName(), "需要继续写卡,下一步骤号: " + stepNo + ",当前步骤号更新为: " + currentStepNo + ",开始下一轮循环"); |
|
|
Log.i(this.getClass().getSimpleName(), "需要继续写卡,下一步骤号: " + stepNo + ",当前步骤号更新为: " + currentStepNo + ",开始下一轮循环"); |