MediaMetadata.Builder Constructors
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.
Overloads
MediaMetadata.Builder() |
Create an empty Builder. |
MediaMetadata.Builder(MediaMetadata) |
Create a Builder using a |
MediaMetadata.Builder()
Create an empty Builder.
[Android.Runtime.Register(".ctor", "()V", "")]
public Builder ();
- Attributes
Remarks
Create an empty Builder. Any field that should be included in the MediaMetadata
must be added.
Java documentation for android.media.MediaMetadata.Builder.MediaMetadata$Builder()
.
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
MediaMetadata.Builder(MediaMetadata)
Create a Builder using a MediaMetadata
instance to set the
initial values.
[Android.Runtime.Register(".ctor", "(Landroid/media/MediaMetadata;)V", "")]
public Builder (Android.Media.MediaMetadata? source);
[<Android.Runtime.Register(".ctor", "(Landroid/media/MediaMetadata;)V", "")>]
new Android.Media.MediaMetadata.Builder : Android.Media.MediaMetadata -> Android.Media.MediaMetadata.Builder
Parameters
- source
- MediaMetadata
source
- Attributes
Remarks
Create a Builder using a MediaMetadata
instance to set the initial values. All fields in the source metadata will be included in the new metadata. Fields can be overwritten by adding the same key.
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.