1、在Android 应用程序中不能使用System.out.println(..)来输出信息,而要使用Log类中的静态方法输出调试信息。
Log.d("onStart", "onStart Method is executed.");
2021-07-31 01:54:47
1、在Android 应用程序中不能使用System.out.println(..)来输出信息,而要使用Log类中的静态方法输出调试信息。
Log.d("onStart", "onStart Method is executed.");