---
title: "What is Activity and Intent in Android? What is the difference between Activity and Intent?"  
description: "What is Activity and Intent in Android? What is the difference between Activity and Intent?"  
author: "Uthkarsh pal"  
published: 2018-01-21  
canonical: https://answers.mindstick.com/qa/33365/what-is-activity-and-intent-in-android-what-is-the-difference-between-activity-and-intent  
category: "technology"  
tags: ["android"]  
reading_time: 1 minute  

---

# What is Activity and Intent in Android? What is the difference between Activity and Intent?

What is [Activity](https://www.mindstick.com/blog/23160/fidgetsguide-exercise-guides-newsletters) and [Intent](https://www.mindstick.com/forum/2382/how-to-set-textview-from-another-activity-using-intent-extra) in [Android](https://www.mindstick.com/articles/1672/android-internals)? What is the [difference](https://www.mindstick.com/blog/398/difference-between-object-type-and-var-type) between Activity and Intent?

## Answers

### Answer by Prateek sharma

An activity in an android application is the screen which opens first to the user and with which the user interacts. an android application may contain several activities.

to make an activity in android you need to extend your class from parent class which is ACTIVITY class. for example, to make an activity you need to write -

class MainActivity extends Activity {

........

}

an intent in android is the way to pass the message to activities. an activity can also be used to start the service or broadcast the message.

An intent is of two types

1. **Implicit Intent** - Implicit intent can be used to start the application such as maps or youtube from your application.
2. **Explicit Intent** - explicit intent can be used to pass the messages within your activity.

To write an intent -

Intent intent = new Intent(this, someactivity.class);

startActivity(intent);

\

\


---

Original Source: https://answers.mindstick.com/qa/33365/what-is-activity-and-intent-in-android-what-is-the-difference-between-activity-and-intent

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
