android打印函数调用堆栈
打印方法调用堆栈
public static void showFillInStackTrace() {
RuntimeException e = new RuntimeException();
Throwable e1 = e.fillInStackTrace();
Log.e("debug","fillInStackTrace",e1);
}
捉虫
public static void showFillInStackTrace() {
RuntimeException e = new RuntimeException();
Throwable e1 = e.fillInStackTrace();
Log.e("debug","fillInStackTrace",e1);
}