Esempio n. 1
0
 /// <summary>Registers an input channel and handler.</summary>
 /// <remarks>Registers an input channel and handler.</remarks>
 /// <param name="inputChannel">The input channel to register.</param>
 /// <param name="inputHandler">The input handler to input events send to the target.</param>
 /// <param name="messageQueue">The message queue on whose thread the handler should be invoked.
 ///     </param>
 /// <hide></hide>
 public static void registerInputChannel(android.view.InputChannel inputChannel, android.view.InputHandler
                                         inputHandler, android.os.MessageQueue messageQueue)
 {
     if (inputChannel == null)
     {
         throw new System.ArgumentException("inputChannel must not be null");
     }
     if (inputHandler == null)
     {
         throw new System.ArgumentException("inputHandler must not be null");
     }
     if (messageQueue == null)
     {
         throw new System.ArgumentException("messageQueue must not be null");
     }
     lock (sLock)
     {
         nativeRegisterInputChannel(inputChannel, inputHandler, messageQueue);
     }
 }
Esempio n. 2
0
 private static void nativeRegisterInputChannel(android.view.InputChannel inputChannel
                                                , android.view.InputHandler inputHandler, android.os.MessageQueue messageQueue)
 {
     throw new System.NotImplementedException();
 }
Esempio n. 3
0
 private int loadNativeCode(string path, string funcname, android.os.MessageQueue
                            queue, string internalDataPath, string obbPath, string externalDataPath, int sdkVersion
                            , android.content.res.AssetManager assetMgr, byte[] savedState)
 {
     throw new System.NotImplementedException();
 }