Exemplo n.º 1
0
 /// <summary>
 /// Use the provided queue instead of the default one and take a callback
 /// interface in which to handle messages.
 /// </summary>
 /// <remarks>
 /// Use the provided queue instead of the default one and take a callback
 /// interface in which to handle messages.
 /// </remarks>
 public Handler(Looper looper, Handler.Callback callback)
 {
     throw new NotSupportedException();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Constructor associates this handler with the queue for the
 /// current thread and takes a callback interface in which you can handle
 /// messages.
 /// </summary>
 /// <remarks>
 /// Constructor associates this handler with the queue for the
 /// current thread and takes a callback interface in which you can handle
 /// messages.
 /// </remarks>
 public Handler(Handler.Callback callback)
 {
     mCallback = callback;
 }