本文实例讲述了Android获取当前运行的类名或者方法。分享给大家供大家参考。具体实现方法如下:
1
2
3
4
5
6
7
8
9
10
11
12
|
public static String getCurrentMethodName() { int level = 1 ; StackTraceElement[] stacks = new Throwable().getStackTrace(); String methodName = stacks[level].getMethodName(); return methodName; } public static String getCurrentClassName() { int level = 1 ; StackTraceElement[] stacks = new Throwable().getStackTrace(); String className = stacks[level].getClassName(); return className; } |
希望本文所述对大家的Android程序设计有所帮助。