This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package me.yeojoy | |
import android.content.Context; | |
import android.support.v7.widget.RecyclerView; | |
import android.view.GestureDetector; | |
import android.view.MotionEvent; | |
import android.view.View; | |
/** | |
* Created by 민철 on 10월 1일. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
index : 0 | |
Class Name : dalvik.system.VMStack | |
File Name : VMStack.java | |
Line Number : -2 | |
Method Name : getThreadStackTrace | |
isNativeMethod : true | |
toString() : dalvik.system.VMStack.getThreadStackTrace(Native Method) | |
index : 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void show() { | |
StringBuilder sb = new StringBuilder(); | |
StackTraceElement ste = null; | |
int j = Thread.currentThread().getStackTrace().length; | |
for (int index = 0; index < j; index++) { | |
ste = Thread.currentThread().getStackTrace()[index]; | |
if (ste == null) continue; |