Mobile Application Development
Mobile Application Development
DEVELOPMENT
Presented By
S.Vijayalakshmi B.E,
Assistant Professor,
Department of Computer Science,
Sri Sarada Niketan College for Women, Karur.
ANDROID
Structure.
Select SDK Location in the left pane. The path
InstallingEclipse on Windows
11 involves downloading the
Eclipse installer, running it, and
setting up the IDE to your
preference.
Follow these steps to get
android.
All the android examples of this site is
}
public void onClickIndia(View view) { }
THE ANATOMY OF AN ANDROID APPLICATION
1.Explicit Intent
2.Implicit Intent
1. Explicit Intent
It will specify which application or package
<uses-sdk
android:minSdkVersion="18"
android:targetSdkVersion="27" />
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.MyApplication"
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<application>
</application>
</manifest>
2. USES-SDK
It is used to define a minimum and maximum
SDK version by means of an API Level integer
that must be available on a device so that
our application functions properly, and the
target SDK for which it has been designed
using a combination of minSdkVersion,
maxSdkVersion, and targetSdkVersion
attributes, respectively.
It is contained within the <manifest>
element.
<uses-sdk
android:minSdkVersion="18"
android:targetSdkVersion="27" />
3. USES-PERMISSION
android:name="android.permission.CAMERA
"
android:maxSdkVersion="18" />
4. APPLICATION
element.
6. ACTIVITY
The Activity sub-element of an application
refers to an activity that needs to be
specified in the AndroidManifest.xml file. It
has various characteristics, like label, name,
theme, launchMode, and others.
In the manifest file, all elements must be
9. category