**** BEGIN LOGGING AT Tue Jan 01 02:59:57 2008 Jan 01 09:47:30 jasta: i know! i need to continue my internship tomorrow again Jan 01 09:48:02 i still enjoyed my one week off Jan 01 09:54:55 why does the current android UI try to look like the apple OS, even the second wallpaper looks like the default wallpaper for the Leopard desktop, only not purple but green Jan 01 09:55:03 it comes off very ceahp Jan 01 09:55:06 cheap* Jan 01 09:55:33 I don't think it's the finalized UI Jan 01 09:55:55 i really hope so Jan 01 09:56:16 all placeholder stuff. both the appearance and the interaction models are undergoing a ton of work. Jan 01 09:58:20 that's good to hear Jan 01 09:58:27 I like the UI as is but it is sort of... plain Jan 01 12:15:37 is this the google android channel? Jan 01 12:15:56 eugene: yes Jan 01 12:16:06 thanks lede Jan 01 12:38:29 tricky question :p Jan 01 13:39:31 hm Jan 01 13:39:55 when leaving onOptionsItemSelected() it doesnt call onResume() does it? Jan 01 13:40:22 really sad :( Jan 01 13:43:20 why would it? Jan 01 13:45:29 haavi: because i use onResume() to update what is displayed Jan 01 13:46:32 and onPrepareOptionsMenu() gets called before the menu thing shows up so i can't use that either Jan 01 13:47:33 ok yeah Jan 01 13:47:42 what do you need to do exactly? Jan 01 13:49:47 haavi: in the menu i have a list of checks, when i uncheck something i want the changes to take effect, but the check list is pretty big, i could call the update function after every line of "case OPTION_1:" but that looks really clumsy Jan 01 13:50:57 so i'm looking for some method that gets called after the options menu is closed Jan 01 13:51:34 onResume() only works when the whole activiy gets pushed to the background and gets back Jan 01 13:52:27 yeah Jan 01 13:52:47 that's why I asked why would it :) Jan 01 13:53:06 sorry I dunno how to solve your problem Jan 01 13:53:17 I would probably have gone with the clumsy approach :) Jan 01 17:46:31 Is there anyway to pass an arbitrary object to a new activity that you spawn yourself? Jan 01 17:57:27 zgold: you can put data in the Intent using putExtra() Jan 01 18:21:19 Lede: yeah, I could use bundles for marshalling data but I need to pass something more complex :/ Jan 01 18:34:30 zgold: i had the same problem, is the data you are trying to move around also stored in a database? Jan 01 18:36:18 if yes, you could use a unique identifier (which is storable in a Intent) to refer to it Jan 01 18:43:13 Lede: I need to move a View :/ Jan 01 18:43:21 and a service Jan 01 18:43:44 Is there a unique identifier of a service I could pull out, pass that Id, then rebind given that it in the new activity? Jan 01 18:51:14 zgold: i havn't worked with services, so i have no idea Jan 01 23:15:00 How can one pass information to a new activity your creating? Any information Jan 01 23:24:40 pass it through the intent Jan 01 23:24:54 i.putExtra("key","value"); Jan 01 23:36:48 That doesn't get passed though Jan 01 23:36:56 or if it does, I don't see where. Jan 01 23:37:24 normal IntentRecievers do get the intent iself, but when you spawn an actvity it just triggers onCreate() Jan 01 23:39:51 oh, that little function, getIntent() Jan 01 23:39:56 it does get passed through :) Jan 01 23:39:57 yup Jan 01 23:40:07 Missed that :) Jan 01 23:40:15 :) Jan 01 23:40:32 i've actually only seen it being used, not used it myself before Jan 01 23:40:43 though I did see it being used at google london :) Jan 01 23:41:32 I was just looking at the Notepad demo on how it passes the note to edit, and saw getIntent () =P Jan 01 23:42:28 yup Jan 01 23:42:41 just a warning though, you can only pass through strings atm Jan 01 23:42:57 Yeah, primitivte data Jan 01 23:43:06 I've used it extensively elsewhere =P Jan 01 23:43:10 :) Jan 01 23:43:52 For the most part things are provided pretty well and well designed. But silly things like getIntent you either have to just know, or be lucky enough to stumble upon Jan 01 23:44:01 I'm not sure why its not passed as an arg to onCreate() Jan 01 23:44:57 the intent itself? Jan 01 23:46:37 yeah Jan 01 23:46:44 its passed to the function for IntentRecievers Jan 02 00:01:14 has anyone written an IRC client for Android yet? Jan 02 00:01:21 a public one anyway Jan 02 00:01:33 there are two in progress that I know of Jan 02 00:01:41 one being my port of cognet Jan 02 00:01:45 the other being a native irc client Jan 02 00:01:52 ah, okay then. Jan 02 00:02:01 I was thinking about trying to write one, but if there are two already in development... Jan 02 00:02:03 nothing wrong with having 3 though :) Jan 02 00:02:25 true, but I don't know what I'd bring to the table as far as distinguishing features goes Jan 02 00:03:04 "exists and is available" might be a distinguishing feature if you get one released Jan 02 00:03:09 heh. Jan 02 00:03:31 True. Jan 02 00:04:48 i think there might be 3 in dev (maybe 4) Jan 02 00:04:56 irc clients that is Jan 02 00:05:40 I was hoping to spend some real time hacking on android over the last couple of weeks, but then the reality of christmas set in and I spent all my time fixing my family's computers. Jan 02 00:06:18 yeah my android dev hasn't happened over christmas either Jan 02 00:06:26 ditto Jan 02 00:06:38 starting college didn't help much either as far as time spent programming goes :P Jan 02 00:06:48 heh Jan 02 00:09:00 i fell back to a c project strangely Jan 02 00:09:22 I've been working in Lua a lot lately Jan 02 00:09:22 waiting for some fixes in the sdk to continue Jan 02 00:09:30 video game related stuff Jan 02 00:09:45 also, I want Bluetooth in the SDK :( Jan 02 00:11:55 I'm writing an aim client if that counts as a pesudo-irc-client-like program :) Jan 02 00:12:09 heh Jan 02 00:12:22 I wouldn't mind an Androidium Jan 02 00:12:24 Theoretically you could plugin an irc protocol plugin just like msn Jan 02 00:12:29 all my chat protocols combined into one Jan 02 00:12:37 thats what im shooting for ish Jan 02 00:12:52 So I can use XMPP, AIM, IRC, MSN, YIM, ICQ, etc. without having to run more than one app Jan 02 00:12:56 although i dont think i could do IRC Jan 02 00:13:08 IRC's a publicly documented RFC Jan 02 00:13:12 1459 is the main one Jan 02 00:13:20 I'm pretty focused on buddy list and having buddies signon etc. Jan 02 00:13:26 ah. Jan 02 00:13:38 yeah thats what i'm shooting for too, multi IM and irc client Jan 02 00:13:46 i think theres several in the works lol Jan 02 00:13:49 so msn, yahoo, aim icq would all be OK likely Jan 02 00:14:06 I go back to school in 2 weeks; so if I dont finish by then its unlikely i'll ever :) Jan 02 00:14:46 i got a busy schedule for a while, then 'm off to DC for shmoocon, then to canada for a month where hopefully i'll get a lot of spare time to do android stuff (and a few other projects) Jan 02 00:15:16 so who knows. its all good fun though lol Jan 02 00:15:24 My original goal was to have a semi-functional prototype done by the time the challenge started Jan 02 00:15:31 yeah really; that my main goal. It is kinda fun :) Jan 02 00:15:42 * benley is sad he isn't eligible for the challenge Jan 02 00:15:56 you work @ google? Jan 02 00:15:58 I think it's degraded at this point into "have it pretending to work with lots of pseudocode and comments" Jan 02 00:16:03 yeah Jan 02 00:16:07 ouch. that sucks. Jan 02 00:16:07 Envy :) Jan 02 00:16:16 I mean, I'd love to work at Google Jan 02 00:16:17 I want an internship there this summer heh Jan 02 00:16:20 but then no challenge :( Jan 02 00:16:23 heh Jan 02 00:18:29 i'm focusing on irc for now, would like to get a fairly full featured irc client n time for the challenge, with enough room left for other protocol modules to plug in, but not necessarily completed Jan 02 00:18:47 but it may well end up like billmeltsner's hehe Jan 02 00:19:55 heh **** ENDING LOGGING AT Wed Jan 02 02:59:57 2008