最近调试项目时出现一个现象:startActivity 跳转不成功 也没有异常信息
观察到打印日志:Jit: resizing JitTable from 4096 to 8192
网上查询到的信息:That tells you that you are using memory. If your app crashes post the error message you get. Those are just information about garbage collection and the Just-In-Time compiler. It is likely that you use too much memory or have a leak though.
大概的意思是内容使用太多,结合程序实现,Activity之间互相多次跳转,取消finish 问题解决。
由于finish后再跳转每个activity要初始化很多工作占用内存,finish后不会全部立马释放导致