Value: 16843475
Flag indicating whether the application's rendering should be hardware accelerated if possible. This flag is turned on by default for applications that are targeting Android.OS.Build.VERSION_CODES.IceCreamSandwich or later.
This flag can be set on the application and any activity declared in the manifest. When enabled for the application, each activity is automatically assumed to be hardware accelerated. This flag can be overridden in the activity tags, either turning it off (if on for the application) or on (if off for the application.)
When this flag is turned on for an activity (either directly or via the application tag), every window created from the activity, including the activity's own window, will be hardware accelerated, if possible.
Please refer to the documentation of Android.Views.WindowManagerFlags.HardwareAccelerated for more information on how to control this flag programmatically.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form "@[package:]type:name") or theme attribute (in the form "?[package:][type:]name") containing a value of this type.