Intent.GetBooleanExtra(String, Boolean) Method
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.
Retrieve extended data from the intent.
[Android.Runtime.Register("getBooleanExtra", "(Ljava/lang/String;Z)Z", "GetGetBooleanExtra_Ljava_lang_String_ZHandler")]
public virtual bool GetBooleanExtra (string? name, bool defaultValue);
[<Android.Runtime.Register("getBooleanExtra", "(Ljava/lang/String;Z)Z", "GetGetBooleanExtra_Ljava_lang_String_ZHandler")>]
abstract member GetBooleanExtra : string * bool -> bool
override this.GetBooleanExtra : string * bool -> bool
Parameters
- name
- String
The name of the desired item.
- defaultValue
- Boolean
the value to be returned if no value of the desired type is stored with the given name.
Returns
the value of an item previously added with putExtra(), or the default value if none was found.
- Attributes
Remarks
Retrieve extended data from the intent.
Java documentation for android.content.Intent.getBooleanExtra(java.lang.String, boolean)
.
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.
Applies to
See also
- <xref:Android.Content.Intent.PutExtra(System.String%2c+System.Boolean)>