**** BEGIN LOGGING AT Fri Nov 01 02:59:59 2013 Nov 01 03:02:22 phutchins: just making a quick sample app to show how to use it Nov 01 03:05:20 anyone uses robelectric? Nov 01 03:05:36 has anyone seen any docs on the Bluetooth HID support added in KitKat? Nov 01 03:06:42 Hello all, does anyone know if there are known issues with the Android AudioManager, specifically setRingerMode() when trying to set the phone silent? Nov 01 03:07:29 Has anyone tried modifying a listview or an expandable list view from robelectric? how do you test scrolling the list view, and that the getview method works properly? Nov 01 03:07:39 Napalm: cool Nov 01 03:11:43 I've been trying to sort through documentation on USB Host mode. All I want to do is communicate with my Arduino over USB, but the examples I see are either one-way communications TO the device, or so old my Eclipse comes up with a million errors for the example. Nov 01 03:13:36 aut0tek: so usb host mode gets you raw access to the usb endpoint Nov 01 03:13:59 you'll have to write (or find) drivers for the usb serial interface presented by the arduino Nov 01 03:14:06 there's also power concerns and device compatibility concerns Nov 01 03:14:27 Ohhh. Nov 01 03:14:35 So it's not that simple Nov 01 03:14:37 lol Nov 01 03:14:47 unfortunately no Nov 01 03:14:51 it's also pretty powerful Nov 01 03:14:53 but not simple Nov 01 03:15:37 there's some library projects for implementing various usb serial drivers Nov 01 03:15:42 so you can probably find one of them Nov 01 03:15:56 what android hw are you using Nov 01 03:16:42 also the eclipse errors are probably the sdk rev being set wrong; usb host is in 4.0 and above (technically 3 but no-one uses 3); so set your minimum level to api 14 Nov 01 03:17:14 I've seen a couple libraries, but I don't know about the licensing stuff, like one is lgpl, idk if I'm allowed to use it or not for an open-source project. The android I have is an S4 Nov 01 03:17:24 so the s4 should work Nov 01 03:17:30 tho i haven't tried it w/ touchwiz Nov 01 03:18:00 it DOES actually have a pretty solid power budget, it'll nuke your battery tho Nov 01 03:18:38 Perhaps I could remove the power over usb? I can apply power to the arduino externally Nov 01 03:24:24 yeah - so I've made a board to do just that; you can do it w/ some hacked up cables, too Nov 01 03:24:47 i'm looking to get the board I made produced actually for just this sort of thing Nov 01 03:27:21 cool. So I take it losing the + wire and keeping the - one doesn't solve that problem Nov 01 03:43:03 Maybe I explained my problem incorrectly... Nov 01 03:43:08 Say I have 3 listviews Nov 01 03:43:36 I would like them all to be vertically expanded to the max needed to show everything in them. Any thing that is over screen size goes off the bottom of the screen Nov 01 03:43:53 One listview is below the first and the third below that Nov 01 03:44:07 draw a picture Nov 01 03:44:11 and upload Nov 01 03:44:15 when I scroll, I want to scroll the entire page that has all the list views expanded. Nov 01 03:44:18 k Nov 01 03:45:05 aut0tek: if you wanted to split the usb host power off, you'd sever the vcc line and keep the gnd, d+, d- Nov 01 03:45:06 I can take a screenshot of my app Nov 01 03:49:15 Napalm: http://icanhasnom.com/images/fliplist_scrolling.jpg Nov 01 03:49:43 So from this screenshot you can see that the third listview is scrolling inside itself Nov 01 03:49:48 I want it to run off the bottom of the screen Nov 01 03:49:51 i see your problem Nov 01 03:49:54 and all three to scroll together Nov 01 03:49:56 your doing it wrong Nov 01 03:49:59 so not "at the same time" Nov 01 03:50:02 its not 3 listviews Nov 01 03:50:02 right, i figured as much :) Nov 01 03:50:12 its 1 listview with all the items in Nov 01 03:50:30 well, I have a relativelayout with 3 listviews in it Nov 01 03:50:39 no Nov 01 03:50:48 you want one listview that fills the screen Nov 01 03:51:04 but the button and text above the list views aren't from teh list view Nov 01 03:51:05 each of the adapters should be merged together and the result set to the listview Nov 01 03:51:07 https://github.com/commonsguy/cwac-merge Nov 01 03:51:32 phutchins: then you should make them part of the list view Nov 01 03:51:41 Yeah I could merge it... i guess. But I may not want the format of each of the lists to be the same Nov 01 03:51:51 ok Nov 01 03:51:55 they dont need to me Nov 01 03:51:58 need to be Nov 01 03:52:07 but it sounds to me like you just want a scrollview Nov 01 03:52:16 and drop all of your views in it Nov 01 03:52:24 yeah that might work best Nov 01 03:52:28 so just get rid of your adapters and listviews Nov 01 03:52:30 would it help to see my code for the view? Nov 01 03:52:36 no Nov 01 03:52:37 lol Nov 01 03:52:40 :) Nov 01 03:52:50 i have way too much code alreadyl, thanks anyway Nov 01 03:52:52 ;) Nov 01 03:53:01 haha Nov 01 03:53:31 So i would completely loose the listview and use scroll view and populate that with the view taht i'm populating the listview with currently? Nov 01 03:54:47 wait no. Nov 01 03:54:53 i think i confused myself Nov 01 03:55:36 phantomcircuit: there is no point in a listview that shows all it's content.... Nov 01 03:56:37 does anyone have a signal booster from tmobile? Nov 01 03:56:42 ive been meaning to call for like a year Nov 01 04:04:40 Napalm: you think I should just use something other than list views? I'm inflating it with a view that is a relative layout with two text views in it... I guess I need the listview for the adapter to work. Nov 01 04:13:47 how in the hell do i only get 1MB/s off VPN, but 7MB/s on vpn Nov 01 04:13:59 compression Nov 01 04:14:31 hmm Nov 01 04:14:51 so is the data speedtest.net sending compressible; if i d/l a tar.gz maybe i won't see a difference Nov 01 04:15:14 correct, infact they choose high entropy data to avoid compression Nov 01 04:15:20 so, no idea Nov 01 04:15:21 noob question. Just trying to figure out how to modify this demo http://developer.android.com/training/basics/firstapp/starting-activity.html#DisplayMessage so that I can append static text to what's displayed on the textview output Nov 01 04:16:48 how it going Napalm ? going to anddevcon or whatever is coming up? Nov 01 04:17:12 just been to the UK one Nov 01 04:17:19 Droidcon UK 2013 Nov 01 04:17:41 so is that a no? :P Nov 01 04:18:00 yes Nov 01 04:18:05 yes its a no Nov 01 04:18:06 :D Nov 01 04:19:27 i got these transparent images im using for buttons Nov 01 04:19:27 hmm Nov 01 04:19:34 im not getting that sweet blue background like others are Nov 01 04:19:50 maybe cuz im using ? should i use