property:
1、android:allowClearUserData
Whether to give the user permission to delete user data, if true, the application manager has permission to clear the data; false does not. Default is true.
2、android:allowTaskReparenting
Whether the application-defined activities can be transferred from the started task to the same task as it and will be taken to the foreground. true they can be transferred if false,
They must stay with the task of starting them. Default is false.
3、android:backupAgent
Implement the class name of the backup agent of the application and the subclass of BackupAgent. The name of this property should be a fully qualified class name (eg, "").
However, if the initial letter of the name is set to a dot, it can also be the class name (such as ".MyBackupAgent"), it will be appended to the package name defined in the <manifest> element.
There is no default value.
4、android:debuggable
Is the application possible to use debug, or even run in user mode. true yes, false cannot. Default is false.
5、android:description
User-readable, longer and more application descriptions than application tags. This value must be a reference string. Unlike tags, he cannot be set to hardcoded strings. There is no default value.
6、android:enabled
Whether the Android system can instantiate the components of the application. If true, if false, if false, it is not. If true, the enabled property of each component determines the component
Whether it is available. If false, it overrides the specified value of the component, and all components will not be used again. Default is true.
7、android:hasCode
Whether the application contains code. true means include, false means not included. When the value is false, the system will not try to load any code of the application. Default is true.
8、android:icon
The icon for the entire application, or the default icon for each component. This property value must be set to a reference to the drawable resource. There is no default value.
9、android:killAfterRestore
In the integer system reset operation, when its settings are reset, should the application be terminated? The reset operation of a single package will not cause the application to be closed. The recovery operation of the entire system only represents
Sex occurs once, when the phone is set for the first time. Third-party applications will not use this property frequently.
The default value is true, which means that when the entire system is restored, the application will terminate after running and playing with its data.
10、android:label
An easy-to-read application tag and is also the default tag for every component of the application. This tag should be set to reference string resource, of course it can also be used in the user like other strings
Specified in the interface. However, for convenience, undefined strings can be set during application development.
11、android:manageSpaceActivity
The fully qualified name of an Activity subclass, which can be started by the system to allow users to manage the storage space occupied by this application. This activity should also be declared with the <activity> element.
12、android:name
The fully qualified name of the Application subclass implemented for this application. When the application starts, this class will be instantiated before other components of the application.
This subclass is optional; most applications do not require it. By default, Android uses instances of the basic Application class.
13、android:permission
The name of the license that the customer must set in order to interact with the application. This property is a convenient way to set up permissions for the components of the application. It can be rewritten by the component's permission property.
14、android:persistent
Whether the application remains running for all times. true is, false is not. Default is false. Normally, this flag should not be set by the application. Persistence mode is specified by only a few system applications.
15、android:process
Set a runtime name for the component under the application. Each component can define its own process name by setting its own process attribute.
By default, Android creates a process for the app when the first component of the app needs to be run. All components run in the same process. The name of this process and in <manifest>
The backup attribute name set by the element is the same.
By setting this property that can be shared in other applications, you can coordinate the application's components to run in the same process, but only the two applications also share the user ID and sign the same certificate.
If the name of this property starts with a colon (":"), a new private process will be created. If a process's name begins with a lowercase letter, a public process will be created.
A public process can be shared by other applications to reduce resource usage.
16、android:restoreAnyVersion
Indicates that the application is ready to try to restore all backup data collections, even if the backup data is stored with a higher number than the currently installed application. Setting to true will allow backup managers to try
Recovery when the version does not match, it means data conflict. Use with caution. Default is false.
17、android:taskAffinity
The same name is provided to all components under the application, except for the component that sets its own taskAffinity property. By default, all components use the same affinity. The name of Affinity
The same package name as set in the <manifest> element.
18、android:theme
Defines a topic that references a self-styled resource for the component under the application. Individual activities can set their own themes by setting their own theme properties.
1、android:allowClearUserData
Whether to give the user permission to delete user data, if true, the application manager has permission to clear the data; false does not. Default is true.
2、android:allowTaskReparenting
Whether the application-defined activities can be transferred from the started task to the same task as it and will be taken to the foreground. true they can be transferred if false,
They must stay with the task of starting them. Default is false.
3、android:backupAgent
Implement the class name of the backup agent of the application and the subclass of BackupAgent. The name of this property should be a fully qualified class name (eg, "").
However, if the initial letter of the name is set to a dot, it can also be the class name (such as ".MyBackupAgent"), it will be appended to the package name defined in the <manifest> element.
There is no default value.
4、android:debuggable
Is the application possible to use debug, or even run in user mode. true yes, false cannot. Default is false.
5、android:description
User-readable, longer and more application descriptions than application tags. This value must be a reference string. Unlike tags, he cannot be set to hardcoded strings. There is no default value.
6、android:enabled
Whether the Android system can instantiate the components of the application. If true, if false, if false, it is not. If true, the enabled property of each component determines the component
Whether it is available. If false, it overrides the specified value of the component, and all components will not be used again. Default is true.
7、android:hasCode
Whether the application contains code. true means include, false means not included. When the value is false, the system will not try to load any code of the application. Default is true.
8、android:icon
The icon for the entire application, or the default icon for each component. This property value must be set to a reference to the drawable resource. There is no default value.
9、android:killAfterRestore
In the integer system reset operation, when its settings are reset, should the application be terminated? The reset operation of a single package will not cause the application to be closed. The recovery operation of the entire system only represents
Sex occurs once, when the phone is set for the first time. Third-party applications will not use this property frequently.
The default value is true, which means that when the entire system is restored, the application will terminate after running and playing with its data.
10、android:label
An easy-to-read application tag and is also the default tag for every component of the application. This tag should be set to reference string resource, of course it can also be used in the user like other strings
Specified in the interface. However, for convenience, undefined strings can be set during application development.
11、android:manageSpaceActivity
The fully qualified name of an Activity subclass, which can be started by the system to allow users to manage the storage space occupied by this application. This activity should also be declared with the <activity> element.
12、android:name
The fully qualified name of the Application subclass implemented for this application. When the application starts, this class will be instantiated before other components of the application.
This subclass is optional; most applications do not require it. By default, Android uses instances of the basic Application class.
13、android:permission
The name of the license that the customer must set in order to interact with the application. This property is a convenient way to set up permissions for the components of the application. It can be rewritten by the component's permission property.
14、android:persistent
Whether the application remains running for all times. true is, false is not. Default is false. Normally, this flag should not be set by the application. Persistence mode is specified by only a few system applications.
15、android:process
Set a runtime name for the component under the application. Each component can define its own process name by setting its own process attribute.
By default, Android creates a process for the app when the first component of the app needs to be run. All components run in the same process. The name of this process and in <manifest>
The backup attribute name set by the element is the same.
By setting this property that can be shared in other applications, you can coordinate the application's components to run in the same process, but only the two applications also share the user ID and sign the same certificate.
If the name of this property starts with a colon (":"), a new private process will be created. If a process's name begins with a lowercase letter, a public process will be created.
A public process can be shared by other applications to reduce resource usage.
16、android:restoreAnyVersion
Indicates that the application is ready to try to restore all backup data collections, even if the backup data is stored with a higher number than the currently installed application. Setting to true will allow backup managers to try
Recovery when the version does not match, it means data conflict. Use with caution. Default is false.
17、android:taskAffinity
The same name is provided to all components under the application, except for the component that sets its own taskAffinity property. By default, all components use the same affinity. The name of Affinity
The same package name as set in the <manifest> element.
18、android:theme
Defines a topic that references a self-styled resource for the component under the application. Individual activities can set their own themes by setting their own theme properties.