Example #1
0
        static IntPtr n_Queue_Ljava_lang_String_(IntPtr jnienv, IntPtr native__this, IntPtr native_uri)
        {
            global::Com.Spotify.Android.Appremote.Internal.PlayerApiImpl __this = global::Java.Lang.Object.GetObject <global::Com.Spotify.Android.Appremote.Internal.PlayerApiImpl> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
            string uri   = JNIEnv.GetString(native_uri, JniHandleOwnership.DoNotTransfer);
            IntPtr __ret = JNIEnv.ToLocalJniHandle(__this.Queue(uri));

            return(__ret);
        }
Example #2
0
        static IntPtr n_Play_Ljava_lang_String_Lcom_spotify_android_appremote_api_PlayerApi_StreamType_(IntPtr jnienv, IntPtr native__this, IntPtr native_uri, IntPtr native_streamType)
        {
            global::Com.Spotify.Android.Appremote.Internal.PlayerApiImpl __this = global::Java.Lang.Object.GetObject <global::Com.Spotify.Android.Appremote.Internal.PlayerApiImpl> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
            string uri = JNIEnv.GetString(native_uri, JniHandleOwnership.DoNotTransfer);

            global::Com.Spotify.Android.Appremote.Api.PlayerApiStreamType streamType = global::Java.Lang.Object.GetObject <global::Com.Spotify.Android.Appremote.Api.PlayerApiStreamType> (native_streamType, JniHandleOwnership.DoNotTransfer);
            IntPtr __ret = JNIEnv.ToLocalJniHandle(__this.Play(uri, streamType));

            return(__ret);
        }
Example #3
0
 static IntPtr n_Pause(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Spotify.Android.Appremote.Internal.PlayerApiImpl __this = global::Java.Lang.Object.GetObject <global::Com.Spotify.Android.Appremote.Internal.PlayerApiImpl> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(JNIEnv.ToLocalJniHandle(__this.Pause()));
 }