WindowManager.PropertySupportsMultiInstanceSystemUi Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
Use 'Android.Views.IWindowManager.PropertySupportsMultiInstanceSystemUi'. This class will be removed in a future release.
Activity or Application level android.content.pm.PackageManager.Property
PackageManager.Property
for an app to declare that System UI should be shown for this
app/component to allow it to be launched as multiple instances.
[Android.Runtime.Register("PROPERTY_SUPPORTS_MULTI_INSTANCE_SYSTEM_UI", ApiSince=35)]
[System.Obsolete("Use 'Android.Views.IWindowManager.PropertySupportsMultiInstanceSystemUi'. This class will be removed in a future release.")]
public const string PropertySupportsMultiInstanceSystemUi;
[<Android.Runtime.Register("PROPERTY_SUPPORTS_MULTI_INSTANCE_SYSTEM_UI", ApiSince=35)>]
[<System.Obsolete("Use 'Android.Views.IWindowManager.PropertySupportsMultiInstanceSystemUi'. This class will be removed in a future release.")>]
val mutable PropertySupportsMultiInstanceSystemUi : string
Field Value
- Attributes
Remarks
Activity or Application level android.content.pm.PackageManager.Property PackageManager.Property
for an app to declare that System UI should be shown for this app/component to allow it to be launched as multiple instances. This property only affects SystemUI behavior and does _not_ affect whether a component can actually be launched into multiple instances, which is determined by the Activity's launchMode
or the launching Intent's flags. If the property is set on the Application, then all components within that application will use that value unless specified per component.
The value must be a boolean string.
<b>Syntax:</b>
<activity>
<property
android:name="android.window.PROPERTY_SUPPORTS_MULTI_INSTANCE_SYSTEM_UI"
android:value="true|false"/>
</activity>
Java documentation for android.view.WindowManager.PROPERTY_SUPPORTS_MULTI_INSTANCE_SYSTEM_UI
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.