The only really interesting thing there is the failed binder transaction... this is generally due to trying to send a transaction that is too large -- more than 512K or so (depending on what other transactions are in flight).
The timeout messages indicate your app is not letting its message loop go idle, which may be fine -- for example if it is continually drawing and never pausing the CPU. On Mon, Aug 8, 2011 at 8:28 AM, Boozel <[email protected]> wrote: > Thanks very much > > My service returns an ArrayList<String> of data to my main activity which > then uses > > Intent tagPickerIntent = new Intent(PlantPulseActivity.this, > TagPicker.class); > tagPickerIntent.putExtra("analogue", analogTags); > PlantPulseActivity.this.startActivity(tagPickerIntent); > > But i get the error below. What causes this? (I thought maybe i needed to > unbind from the service with the open connection thats why i asked the first > question) > > 08-08 08:14:01.222: INFO/ActivityManager(106): Starting: Intent { > cmp=com.boozel.plantpulse/.TagPicker (has extras) } from pid 10064 > 08-08 08:14:01.234: ERROR/JavaBinder(106): !!! FAILED BINDER TRANSACTION > !!! > 08-08 08:14:11.222: WARN/ActivityManager(106): Launch timeout has expired, > giving up wake lock! > 08-08 08:14:11.238: WARN/ActivityManager(106): Activity idle timeout for > HistoryRecord{4087b7f0 com.boozel.plantpulse/.TagPicker} > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > -- Dianne Hackborn Android framework engineer [email protected] Note: please don't send private questions to me, as I don't have time to provide private support, and so won't reply to such e-mails. All such questions should be posted on public forums, where I and others can see and answer them. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

