Hi, today we will talk about one of the basal things in Android application an Activity. How to understand an Activity Activity is the basis of your application and entry point as well. From the user side, it's a single focused thing that user can do while interacting with your application. Most of the Activities interact with the user and take care of creating a window for your UI. Also, using multiple Activities to represent various tasks helps a programmer to make app's code less complex and easier to maintain. Activities can be used as fullscreen or floating windows and as a part of another activity (in an ActivityGroup , note that it's deprecated since API 13). Activity insights Firs of all to start an activity you should define it in your manifest using <activity> tag inside <application> . Like this: <manifest> <application> <activity android:name=".MyActivity" /> </application> </manifest > Every class...