Application/////////////////////////////////////
1. hardwareaccelerated Properties
Add <application> attribute tags to your android manifest file to use for the entire application
Hardware Acceleration。
<application android:hardwareAccelerated="true" ...>
Specific reference: Graphics hardware acceleration and rendering techniques for Android 4.0
2. Theme Properties
Theme theme is used to set the UI style of the interface, you can set the entire application or an activity's interface style. The following theme are built into the Android SDK and can be categorized by title bar and status bar.
Specific reference: "Android Development Basics" Application interface theme theme how to use
3. Label Property
The "android:label" in the "application" tag can be used to specify that the application will display the name on the home screen. This is the list of applications that you can pull out of the desktop when you are ready to start the machine.
The "android:label" in the "activity" tag can be used to specify that the application will display the name above the activity canvas. You can also change the code by "settitle (" name ").
Specific reference: Androidmanifest's Android:label's small experiment