From 36656e35c928e69b9648b24f6c9822c5d0b8c14c Mon Sep 17 00:00:00 2001 From: Hamza Muric Date: Wed, 26 Dec 2018 17:29:05 +0100 Subject: [PATCH] Add log.d hint (#26334) --- guide/english/android-development/core-components/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/guide/english/android-development/core-components/index.md b/guide/english/android-development/core-components/index.md index 2cb5e0cd0c..cbac3520cd 100644 --- a/guide/english/android-development/core-components/index.md +++ b/guide/english/android-development/core-components/index.md @@ -47,6 +47,9 @@ An _activity_ is a component that has a user interface and represents a single s This call is often used when the user hits the back button, or closes the instance of the app. #### Sample code to understand Activity Lifecycle + +You can print in log console using Log.d() method. + ``` java import android.app.Activity; import android.os.Bundle;