In order to support USB mode in my application on pre 3.1 Android devices i decided to use Google API library: http://developer.android.com/sdk/android-2.3.4.html#usb.

According to documentation UsbAccessory implements Parcelable interface: http://developer.android.com/reference/android/hardware/usb/UsbAccessory.html

But it DOES NOT implement it according to jar:

 package com.android.future.usb;

 public class UsbAccessory  {

    public java.lang.String getManufacturer()  { /* compiled code */ }    
    public java.lang.String getModel()  { /* compiled code */ }    
    public java.lang.String getDescription()  { /* compiled code */ }    
    public java.lang.String getVersion()  { /* compiled code */ }    
    public java.lang.String getUri()  { /* compiled code */ }    
    public java.lang.String getSerial()  { /* compiled code */ }    
    public boolean equals(java.lang.Object o)  { /* compiled code */ }    
    public int hashCode()  { /* compiled code */ }    
    public java.lang.String toString()  { /* compiled code */ }
}

How can it be passed in intent to other activity?

PS. Google suggests how to extract it from intent, but do not how to inject it: http://developer.android.com/reference/android/hardware/usb/UsbAccessory.html

link|improve this question

11% accept rate
How do you think, can the next solution be working: introduce UsbAccessory inheritor which implements Serializable interface and get/put it in intent bundle instead of UsbAccessory object? – Anton Feb 3 at 6:09
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.