这里我按照以下顺序打开了活动 A-> B-> C-> d 现在我只想重新启动活动B,以便订单变为: A-> C-> D->乙
任何人都可以告诉我,我怎样才能在android中实现这种状态。
提前致谢。
答案 0 :(得分:1)
在活动B的清单文件中执行此操作:
$n = 65536
$counter = 1
Import-Csv -LiteralPath 'C:\test\test.csv' -Header 'ColX', 'ColY' |
Add-Member -MemberType ScriptProperty -Name 'ColN-Y' -Value {$n - $_.ColY} -PassThru |
Add-Member -MemberType ScriptProperty -Name 'N' -Value {$script:counter++} -PassThru |
Sort-Object -Property 'N' -Descending |
Select-Object -Property 'ColX', 'ColN-Y' |
Export-Csv -LiteralPath 'c:\test\output.csv' -NoTypeInformation
答案 1 :(得分:0)
现在你的app中有A B C D. 请尝试以下方法:
Intent intent = new Intent(xxx.this, B.class);
intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
startActivity(intent);
还检查here
中的文件