Chapter-2 Can't see Output in the LogCat window
I typed in the code just as the book asked and in for each cycle in the activity i wrote
public void onStart()
{
super.onStart();
Log.d(tag,"In the onStartEvent()");
}
...etc for (onRestart(), onResume(),....)
i properly imported the Log class even if it might not have been necessary and i have no errors
*The problem is when i start the application i don't see the output "In the onStartEvent()"
|