Manifest file details
Address: http://blog.csdn.net/caroline_wendy/article/details/20899281
ManifestCustomizableApplicationsAndComponentsAndRequired structure and metadata Array.
Android documentation: http://developer.android.com/guide/topics/manifest/manifest-element.html
Hello_World,AndroidManifest. xml:
Xmlns: xml namespaceAndroid namespace;
Package: Name of the package used by the program;
Application:Manifest must contain (must contain) nodes and use various attributes to specify various metadata of the application;
Activity:An optional tag of the application that declares an Activity (a subclass of the Activity) to implement some functions of the visual user interface of the application;
Intent-filter:Destination filter, which starts the Intent of the activity );
Action:The required (must contain) tag of intent-filter, and the activity of the destination filter;
Category:The optional (can contain) label of intent-filter, the type of the destination filter;
In actions and category,Name attributeMeaning, marked in the Intent document;
Documentation:Http://developer.android.com/reference/android/content/Intent.html
Manifest can also be usedAndroid Manifest Editor (Eclipse)Manages XML files and interfaces;
In Android StudioNoSuch features;