Android: にメソッドが必要ですgetCallerName()
。それを使用するメソッドの名前を出力します。例: メソッドがある場合:
void doSomething(){
getCallerName(); // This line will print "doSomething"
}
//or another example
void foo(){
getCallerName(); // this line will print "foo"
}
実行時にそれを行うことができると誰かに教えてもらえますか? そして、どうすればそれを行うことができますか? 前もって感謝します!