我有两部智能手机,一部是 Nexus 4,一部是 Vodafone Smart 3 (TLC - Alcatel v975)。在我的源代码中,我有两个 log.d,如果我在 Nexus 上进行调试,log.d 会出现在 Logcat 中,但是当我使用 Vodafone Smart 3 时,log.d 不会出现在 Logcat 中......我的源代码是以下 :
public void savetime(View view){
Integer hour= mitsos.getCurrentHour();
Integer minutes=mitsos.getCurrentMinute();
Log.d("mitsos","hour "+hour);
Log.d("mitsos","minutes"+minutes);}