思捻如枫 2010-12-29
import android.util.Log; private static final String TAG = "MyActivity"; Log.v(TAG, "currentX=" + currentX);
android自带LogCat类。在LogCat控制台是也可以看到Log.v(TAG, "currentX=" + currentX); 输出的信息,不过中文输出会乱码
在eclipse中点击菜单栏,window->Show View 把LogCat显示出来