摘要:
1.1 Activity 的生命周期全面分析 1.1.1 典型情况下的生命周期分析 onPause: 正在停止,正常情况下紧接着 onStop 就会被调用,然后新的 Activity 执行 onResume; 如果新 Activity 采用了透明主题,则不会调用 onStop,因为 onStop 意 阅读全文
摘要:
``` public List letterCombinations(String digits) { LinkedList ans = new LinkedList(); if(digits == null || digits.length() == 0) return ans; String[] 阅读全文