**** BEGIN LOGGING AT Tue Nov 06 02:59:58 2012 Nov 06 03:02:11 How can I change the fragment children of a viewPager on the go? Nov 06 03:02:33 I want to replace fragmentX at a position with fragmentY Nov 06 03:03:12 I use a FragmentPagerAdapter for this pager Nov 06 03:06:05 How can I use these constants http://developer.android.com/reference/android/R.styleable.html#FrameLayout_Layout_layout_gravity ? Nov 06 03:06:38 napster: invalidate the adpater that backs it Nov 06 03:06:50 return a different fragment for whatever page you want Nov 06 03:06:54 Gravitiy.top ? Nov 06 03:07:01 invalidate, ok let me check Nov 06 03:07:31 notifyDataSetChanged Nov 06 03:08:03 JakeWharton: ok that seems to be it Nov 06 03:08:05 ty :) Nov 06 03:23:52 CVirus: http://lifeisimple.wordpress.com/2012/04/27/android-using-r-styleable/ Nov 06 03:24:52 styleables allow you to define styles: https://github.com/tom-dignan/nifty/blob/master/res/values/attrs.xml Nov 06 03:24:59 see that example styleable Nov 06 03:28:45 https://gist.github.com/a18ca27a4de8d87a58af <-- when you have a styleable, you can make a style Nov 06 03:28:50 JakeWharton: notifying the adapter does not change the child fragment :( Nov 06 03:29:01 I mean even after setting the correct data Nov 06 03:29:09 see also: http://blog.stylingandroid.com/ Nov 06 03:30:14 napster: notifydataset changed only works if you use add/remove methods on the list Nov 06 03:30:25 otherwise you have to initialize a new adapter and reset the listview Nov 06 03:30:58 regedit: good news! Nov 06 03:31:16 yup ;) Nov 06 03:31:45 napster: *by list I mean use the array adapter methods clear() and add() and then call notifydatasetchanged() Nov 06 03:32:57 ok, toggling gps on/off - clearly there's no standard way to do it Nov 06 03:33:26 some toggling widgets most likely use some dirty hacks Nov 06 03:33:39 any experiences in that area? Nov 06 03:36:17 Sculptor: uh, iirc there is a way.. I would have to look at my code Nov 06 03:36:32 system settings or using an intent to take the user to their settings. Nov 06 03:37:33 yes, you should be able to do that - but that's not a 1-click way Nov 06 03:38:29 um, system settings would be if there is such a key, which I think there is Nov 06 03:38:53 I forget what I did. Let me take a look Nov 06 03:38:59 thanks Nov 06 03:41:30 yeah, I used an intent Nov 06 03:41:35 it's only doable with a hack like you thought Nov 06 03:41:39 http://stackoverflow.com/questions/4721449/enable-gps-programatically-like-tasker Nov 06 03:41:52 but thanks, this will make a nice addition to my collection of android favorites Nov 06 03:42:18 oggled by exploiting a bug in the power manager widget. ? Nov 06 03:42:24 that's fixed iirc Nov 06 03:42:51 i read tons of scackoverflow gps toggling posts Nov 06 03:42:51 "At the time of this (my) comment, the links in this answer seem to indicate that the bug this exploits has recently been fixed. I just wanted to point out that the exploit still seems to work just fine in my own test environment, so you shouldn't give up on trying this... just be sure that your code will handle any errors if it doesn't work! " Nov 06 03:43:44 there's always Build.VERSION Nov 06 03:43:49 use the hack on old versions Nov 06 03:43:54 guess you could implement all the hacks that are out there, and if all fail, you could flash a gps settings menu for user to do it manually Nov 06 03:44:32 just fall back on this http://developer.android.com/reference/android/Manifest.permission.html#BRICK Nov 06 03:47:24 another brick in the wall Nov 06 03:47:37 going to get off irc so i stop wasting time Nov 06 03:47:39 see ya Nov 06 03:47:43 are there appls on market with the android.permission.BRICK requirement Nov 06 03:47:49 playstore Nov 06 03:53:17 it would be awesome to be able to search by permission Nov 06 03:55:15 oh god, a bug in android support lib wastes more than 4 hours. JakeWharton : "FragmentPagerAdapter doesn’t respond to notifyDataSetChanged()" Nov 06 03:55:49 You reported this as well : http://code.google.com/p/android/issues/detail?id=19110 Nov 06 03:57:38 Anyone have any luck setting the radius of radial gradients in XML with % values? It only seems to work with hard pixel values. Nov 06 04:00:41 why is it that, when i set my textview height and my font in dp, do they turn out to have different relative sizes on different screens? on one phone, i can fit twice as many lines of text in the box as on another phone Nov 06 04:02:28 The devices may have different DPIs. http://developer.android.com/guide/practices/screens_support.html#overview Nov 06 04:11:09 <|KNERD|> groovy..I am d/l the nVida Tegra visual studio addin Nov 06 04:13:42 anyone know how to reset the camera? Nov 06 04:14:06 somehow i broke it screwing around with some jni code, and even the regular camera app doesn't work anymore Nov 06 04:16:19 have you tried turning it off and an again? Nov 06 04:16:26 *on Nov 06 04:16:53 roy Nov 06 04:17:47 yes, that's why im asking the internet box Nov 06 04:54:05 If I am making custon "icons" to go with text titles for a gridview, how should I size the icons (I'm making them with inkscape) to handle different screen densities? Nov 06 04:54:27 Just use a ratio of sizes consistent with recomended menu icon sizes? Nov 06 04:54:39 lasserix: did you see the design guidelines :P Nov 06 04:55:02 they are not icons per say Nov 06 04:55:53 they are icons in the sense they symbolize, but I am just putting them their because the listview is boring (sort of a dashboard of choice for 8 catagories) Nov 06 04:55:58 *there Nov 06 04:56:31 maybe boring is better Nov 06 04:56:54 nah it's a list of 8 choices, I wanted to turn it into a 2x4 gridview with icons to accompany Nov 06 04:57:28 i wanted to take a break from coding to do some graphical end stuff, anyways and have the icons done, i am just wondering how to size them since they should be bigger than all the icons in the design guide Nov 06 04:57:42 i'll just use a consistent resizing ratio based off the menu icon dimensions Nov 06 04:58:03 i dont see how this will improve usability Nov 06 04:58:50 but anyhow, i guess you saw this and didn't find an answer here http://developer.android.com/design/style/metrics-grids.html Nov 06 04:59:32 goos: it won't necessarily, but its just a bit of polish. Nov 06 04:59:41 ohh ! thanks that is exactly what i've been looking for for sometime Nov 06 05:04:24 I'm trying to abstract my database further by making some member functions for querying the database Nov 06 05:06:48 so what I'm noticing: if I return a Cursor from a query, but close the database before I use the Cursor, it causes a NullPointerException Nov 06 05:07:24 uh, yeah Nov 06 05:07:33 always close your cursors Nov 06 05:08:03 the cursor should never outlive the db Nov 06 05:13:48 Transaction Amount/Currency: 2.00 CAD Merchant Name: GOOGLE *MARKETPLACE Nov 06 05:13:52 any ideas what the heck htat is Nov 06 05:14:00 it's not showing up in my wallet account transaction history Nov 06 05:14:08 canadiancow: they milked you Nov 06 05:14:17 reminds me of my last month at zynga Nov 06 05:14:23 i had like 30 $0.99 charges on my card Nov 06 05:15:07 testing payments? Nov 06 05:15:41 yea Nov 06 05:15:49 we were having issues with in app billing :P Nov 06 05:16:02 surely not! :) Nov 06 05:16:10 but i fixed them Nov 06 05:16:27 my last pull request deleted roughly 10,000 lines of code Nov 06 05:16:36 i showed it to my manager and he wasnt sure if i was joking or not Nov 06 05:16:40 (this was like my last day there) Nov 06 05:18:03 always nice when you can fix bugs by deleting code Nov 06 05:18:11 it wasnt so much "fixing bugs" Nov 06 05:18:15 as it was "this code is never run" Nov 06 05:18:23 "these resources are never referenced" Nov 06 05:18:23 etc Nov 06 05:18:46 last day at zynga? Nov 06 05:18:50 where are you now? Nov 06 05:19:00 greener pastures Nov 06 05:19:09 on the beach with a cocktail Nov 06 05:19:15 IPO money, y'know ;) Nov 06 05:19:16 lol Nov 06 05:19:25 yea, all $5000 or whatever its worth now Nov 06 05:19:34 like the movie Office Space Nov 06 05:20:09 I think Zynga is still worth slightly more than $5k... just slightly Nov 06 05:20:15 no i mean all my stock Nov 06 05:20:33 oh, I thought you meant the entire company :) Nov 06 05:20:36 no Nov 06 05:25:20 whats with all this voting talk Nov 06 05:25:25 is election day coming up soon? Nov 06 05:25:39 nah, you missed it Nov 06 05:25:50 yes. you have to choose between bad and bad Nov 06 05:26:12 no politics, please... Nov 06 05:26:18 well i dont know if i can "miss" it or "choose" Nov 06 05:26:25 i havent been paying much attention since i cant vote Nov 06 05:27:29 tomorrow is election day Nov 06 05:28:30 oh man. let's not talk about the election... Nov 06 05:28:49 I can't wait till it's over so my dad will shut the fuck up Nov 06 05:30:15 meh, lunchtime... everyone play nice and non-partisan while I'm gone :) Nov 06 05:30:28 someday, there could be a cow in the whitehouse ... Nov 06 05:31:36 really? who Nov 06 05:31:38 ah, Mary Meeker gives some insights. this lady is amazingly smart. http://techcrunch.com/2012/11/05/mary-meeker-internet-trends Nov 06 05:37:49 ffs tmobile is shit in my apartment Nov 06 05:37:56 but att is like 50% more expensive Nov 06 05:38:30 more like your apartment is shit Nov 06 05:41:23 what happens if I call getReadableDatabase() and then don't close that database? Nov 06 05:41:33 pragma-, do you ever stop trolling Nov 06 05:41:47 RustyShackleford, bad news bears Nov 06 05:43:09 if I query a database and recieve a Cursor, the database has to stay open? Nov 06 05:43:31 maybe I should put this up on pastebin Nov 06 05:43:42 rather than trying to ask questions Nov 06 05:43:48 i need to optimize my view - it consists of, counting children, 18 relative layouts, 10 textviews, and 11 imageviews. what are some things i could try? is it faster to have small images that are scaled up? would a framelayout be faster to draw than a relativelayout? etc, etc, etc... Nov 06 05:44:31 can you psate the xml? Nov 06 05:44:35 pastebin*** Nov 06 05:46:05 sure Nov 06 05:47:06 Anyone know how to drag an object along a straight line in inkscape (like in photoshop you hold shift and drag). I know it's not android per say, but the inkscape channel only has tumbleweeds blowing around Nov 06 05:47:50 whomp you can use view hierchy viewer it'll show you redudent layouts Nov 06 05:48:07 https://gist.github.com/a487cf8dca1d57c6b270 Nov 06 05:48:18 none of them are redundant Nov 06 05:48:18 lasserix: yeah, i think you press ctrl Nov 06 05:48:28 I'm trying to make some conveniece functions so I don't have to deal with column names and such Nov 06 05:48:29 http://pastebin.com/sTTucicX Nov 06 05:48:48 this doesn't work, although it does if I comment out db.close(); Nov 06 05:51:49 goos: thanks Nov 06 05:52:26 i don't like how this app is quickly turning into a Rube Goldburg Machine Nov 06 05:52:50 hehe Nov 06 05:53:16 I believe it's because the cursor still holds a reference to the database Nov 06 05:53:42 *why it crashes Nov 06 05:54:43 canadiancow, did you see what i posted? Nov 06 05:55:13 lasserix: That is my hunch as well. And so how do I work around this? Nov 06 05:55:22 is it ok to just never close the database Nov 06 05:55:28 RustyShakleford the key is to open the database in the constructor of the helper and then close the database in the ondestory method of the containing activity Nov 06 05:55:42 OR return just the information you need, not the cursor Nov 06 05:56:08 sorry whomp_ i was afk Nov 06 05:56:12 np Nov 06 05:56:34 anyway im too tired Nov 06 05:56:40 ive already been doing android for like 12 hours today Nov 06 05:56:45 but now that its up, maybe someone else can help :) Nov 06 05:56:46 the database will not ever be modified (atleast, it's not supposed to) Nov 06 05:56:53 then the former should be fine Nov 06 05:56:55 maybe I should make this a static class? Nov 06 05:57:00 you don't need too Nov 06 05:57:23 kk Nov 06 05:57:25 my goal is to make some convenience methods for querying the database Nov 06 05:57:42 can anyone else help me optimize my layout? it takes like 90ms to draw right now. https://gist.github.com/a487cf8dca1d57c6b270 Nov 06 05:57:44 just make mDatabase a field of the SqliteHelperclass and thenin the constructor open it, and make another method to close it that you call in the activity's ondestroy Nov 06 05:58:26 whomp_ use a linearlayout root Nov 06 05:59:43 Dale: did that make sense? You can open the database when the activity starts (in the constructor of the sqlitehelper) and just leave it open the entire time, making sure to close it in OnDestroy Nov 06 06:00:39 err I mean Rusty Shakleford Nov 06 06:00:45 ;p Nov 06 06:00:49 I'm a little confused. Does each instance have it's own SQLiteDatabase object? Nov 06 06:00:58 i find that confusing Nov 06 06:01:15 usually you only have one sqlite helper Nov 06 06:01:29 public void onCreate(SQLiteDatabase arg0) Nov 06 06:02:17 does each instance of my SQLiteHelper recieve a reference to the same SQLiteDatabase? Nov 06 06:02:38 will do. it's also telling me in hierarchyviewer that views that are set to GONE are taking .5ms to draw? why? Nov 06 06:02:58 whomp_ no idea sorry Nov 06 06:03:09 Rusty: i use only one instance of sqlitehelper class Nov 06 06:03:36 you can make it static if you want, just make sure that you close all opened databases in the ondestroy if you want to use multiple instances of the sqlite helper Nov 06 06:03:57 *i believe you want to avoid having multiple connections to same database though Nov 06 06:04:07 *multiple open connections Nov 06 06:04:52 hm. I think I will make it a singleton so I don't mess this up later Nov 06 06:04:54 Rusty Shackleford do you use fragments? I just have a state fragment that holds the sqlite helper and then in all ui fragments I just get a handle on that state fragment and use it's sqlite helper Nov 06 06:05:24 haven't gotten to fragments or very much GUI yet Nov 06 06:05:24 *yeah that's one way to do it Nov 06 06:05:41 it's a huge sdk Nov 06 06:06:49 fragments will make your life a factorial times easier Nov 06 06:07:01 programming is alot more fun when you are familiar with the libraries already Nov 06 06:07:40 aren't there issues with using Fragment on < 4.0 Nov 06 06:08:13 support package is needed? Nov 06 06:08:16 any programmers want to try out my latest creation, a time logger to bill your employer Nov 06 06:08:30 are there any experienced android programmers here? Nov 06 06:08:34 Hello, I am new to using ActionBars and I have seen and tried a lot of apps where they have a persistent ActionBar at the top and the rest of the app seems to be of different activities. What is this approach called? Don't have to give me any code, just need to know the name so I can Google it and learn it myself. Nov 06 06:09:26 For example, there is a drop down list in the ActionBar and every time you press an item in the list, the content changes to what seems to be a different activity Nov 06 06:09:42 But the ActionBar remains persistent. Nov 06 06:11:31 Shackleford: support package is included by default Nov 06 06:14:38 Wait I get it, I think it's called a pager Nov 06 06:16:14 why would views that are set to GONE take up time during drawing? Nov 06 06:16:51 i'm using imagebutton. what's the easiest way to animate its src bitmap - to toggle between two bitmaps Nov 06 06:18:12 Sculptor, look up animators. a viewswitcher is good if you want to animate between multiple views Nov 06 06:18:37 i'm assuming you want a fade or something equally snazzy Nov 06 06:19:49 no, say, i want my battery button, that normally shows battery level, to be animated when usb/ac is pluggged in - during charging - one frame'd show battery level - the other frame'd show usb/ac icon Nov 06 06:20:42 and frames'd switch at the rate of 1Hz Nov 06 06:22:20 make a runnable that switches the view, then look at Handler's post methods to give it delay Nov 06 06:23:17 i'll try, thanks Nov 06 06:23:50 franzks pager indicator by jake wharton look it up? Nov 06 06:24:00 fanzks?!? Nov 06 06:24:10 oh, you're mentioning him Nov 06 06:24:57 you're looking for fragments it would seem Nov 06 06:25:06 they are management containers around Views which can be swapped using a transactional API Nov 06 06:25:23 AnimationDrawable looks interesting Nov 06 06:33:41 Leeds: back from lunch? Nov 06 06:37:15 i need to measure fps. is it accurate just to use dispatchDraw to increment the count of frames shown? Nov 06 06:41:45 whomp if you have a ics device you can turn on fps counter in dev settings Nov 06 06:42:35 can anyone [programmer] who codes for hourly wage please give my new website a shot - http://cworklog.com Nov 06 06:50:22 relipse: that's damn minimalist. even for 2012 Nov 06 06:55:35 lol i need to get a designer to come up wtih a theme for it and stuff Nov 06 07:02:41 Is it possible to disable swiping to the right on a viewPager? Nov 06 07:03:32 g00s: hi? Nov 06 07:05:39 Leeds: you might know this: reading his article (q/a) http://bits.blogs.nytimes.com/2012/11/02/android-nexus-strategy/ … "they want to force the price to be so high that operators have to subsidize the devices very highly. " high prices mean larger margins of course; but is there some other benefit to oems when a carrier subsidizes the device ? Nov 06 07:06:29 relipse, check out twitter bootstrap Nov 06 07:10:23 g00s: dunno... I'd guess what he's saying is that both the hardware manufacturers and consumers are addicted to the subsidies - consumers expect phones at $200-ish prices, while manufacturers expect to get $300 on top of that from the carrier... Nov 06 07:10:39 you might argue that is one of the reasons why service prices are high in the US... Nov 06 07:10:54 what is twitter bootstrap Nov 06 07:10:56 perhaps Nov 06 07:11:28 look it up Nov 06 07:11:59 oh to help me design my website? Nov 06 07:12:06 not sure i even want a framework Nov 06 07:12:10 it's a nice toolkit Nov 06 07:12:27 if you don't want to spend too much time on the design, it's the way to go Nov 06 07:14:03 is it good with php? Nov 06 07:14:10 it's getting off-topic Nov 06 07:14:20 but *nothing* is good with php Nov 06 07:15:03 annoyed at the article link at the bottom Nov 06 07:15:18 "Like Apple, Google Now Has Devices That Come in Three Sizes" Nov 06 07:15:32 preeeeeeeeetty sure the N4/7/10 launch actually came before the iPad Mini launch Nov 06 07:16:04 and the original Galaxy Tab, the first 7" i knew of, was what... a year and a half prior to iPad Mini? Nov 06 07:16:06 grr. Nov 06 07:16:45 tophyr, hah, another apple faggotry Nov 06 07:17:08 apple has : 1. released a phone with a bigger screen 2. released a mid sized tablet Nov 06 07:17:45 apple is accomodating to the market, not the other way around Nov 06 07:17:48 their days are numbered Nov 06 07:20:12 there is very little new under the sun Nov 06 07:20:53 ITYM under the oracle Nov 06 07:28:43 is there a way to search google images for a specific extension? Nov 06 07:30:31 my device does not have a default headset jack. only speakers, what changes i need to make in android to accomadate this Nov 06 07:58:37 lasserix, type:png i think Nov 06 07:58:59 is there any way to add a fragment to a view that *doesn't* have an id? Nov 06 07:59:15 i programmatically set my contentView to a FrameLayout, and would like to add the fragment to it. Nov 06 08:01:14 android.R.id.content Nov 06 08:01:17 is the answer Nov 06 08:24:14 at line 8 in my layout xml at https://gist.github.com/4023442, Android is yelling at me telling me that the TextView needs to have layout_width/height defined. they're clearly defined in the style applied, which works for everything else there. why would they not work in this instance? Nov 06 08:27:36 style="style/confirm_signer_unlinked_explanation" Nov 06 08:27:38 you lack @ Nov 06 08:29:27 kabingo Nov 06 08:29:36 grazie mille Sculptor.. was looking @ the TV above it Nov 06 08:29:53 o/ Nov 06 08:29:53 interesting that it yelled at me about that instead of a syntax error Nov 06 08:47:51 If I have my app's apk built with debug an all that, it should be easy to get the source and everything out of it right? Nov 06 08:47:56 I had a catastrophic hard drive failure >.> Nov 06 08:58:26 any idea why eclipse will break viewing xml files every few minutes Nov 06 08:58:40 text and stuff just randomly dissapears et Nov 06 08:58:41 c Nov 06 08:58:58 because it's ecplise Nov 06 08:59:02 1 Nov 06 08:59:03 :D Nov 06 08:59:37 buy idea :) Nov 06 08:59:43 intellij Nov 06 08:59:54 thanks, that helps alot Nov 06 09:00:03 all ides are crap, just use an editor Nov 06 09:00:07 sry :) Nov 06 09:00:17 command-line building is the way to go Nov 06 09:00:24 notepad++ Nov 06 09:00:26 :D Nov 06 09:00:45 monkyfoniks: eclipse version? Nov 06 09:01:13 ah yes of course, layout building will be 4 times 1uicker in npp :P Nov 06 09:01:18 q* Nov 06 09:01:26 juno Nov 06 09:01:29 auto-generated layouts make a crappy app Nov 06 09:01:30 Lol Nov 06 09:01:36 Eclipse does that here too, but pretty rarely Nov 06 09:01:47 no i still use direct xml editing Nov 06 09:01:56 Also, I just use auto-generated for reference, basically. It's pretty useful Nov 06 09:01:57 try to use 3.x series... Nov 06 09:02:05 like RelativeLayout is so hard to XML Nov 06 09:02:06 i just dont want to build every few seconds to see a change every few hours Nov 06 09:02:36 monkyfoniks: draw into the paper, and create a layout by hand... Nov 06 09:02:53 -_- Nov 06 09:02:55 :D Nov 06 09:03:13 I made layouts from drawings my designer did Nov 06 09:03:14 E-z Nov 06 09:04:34 it's probably hard for him because he's probably the kind of person that googles for java code to copy/paste into his app Nov 06 09:04:40 would have been cool if on android's 5th bday, we got some new tools or something Nov 06 09:05:00 g00s: or at least some bugs fixed Nov 06 09:05:16 heh, yeah that too :) Nov 06 09:05:21 pragma-: no, the problem is the books and tutorials about android Nov 06 09:05:25 or maybe android 4.2 Nov 06 09:05:43 … and that too :D Nov 06 09:05:54 * Ge0rG now wonders if he could convince his employer to get a nexus 4, an ultrabook for development or both Nov 06 09:06:38 we got a bday present from verizon; they killed their vcast store ;) Nov 06 09:06:58 yes pragma- you got me, you probably the kind of kid that still lives with his parents in a dusty basment. congratz you are the best programmer in the world Nov 06 09:07:11 thanks, man Nov 06 09:07:16 np Nov 06 09:07:37 you hear that, guys? i'm the best programmer in the world. Nov 06 09:08:05 I used to google for java code to paste into my app too! Nov 06 09:08:09 Well. Sort of. Nov 06 09:08:13 and only a kid non the less Nov 06 09:08:23 wat … the 16gb international galaxy note II goes for $799 ? thats nuts Nov 06 09:08:29 Wut Nov 06 09:08:36 Samsung wat r u doing. Nov 06 09:08:44 nexus 4 is still faster and more powerful than the note 2 Nov 06 09:08:49 Exactly Nov 06 09:09:05 So samsung is apparently REALLY trying to shoot themselves in the foot recently Nov 06 09:09:15 monkyfoniks: no, the coders hate the graphical design tool Nov 06 09:12:12 Hello All, shall I ask you, where I can find Android-developers to our company? (Moscow, Russia) Nov 06 09:12:27 Moscow, of course ;) Nov 06 09:13:31 well... why not? :( Nov 06 09:13:34 :) Nov 06 09:14:53 probably better than looking in Vladivostok - more convenient anyway Nov 06 09:15:03 yes Nov 06 09:15:30 also, we help with relocation Nov 06 09:15:42 (we are Mail.Ru Group ) Nov 06 09:16:57 * Ge0rG always wondered how secure mail.ru is... Nov 06 09:19:36 >relocation Nov 06 09:19:46 >implying you need to be there to make a proper app Nov 06 09:19:58 lesha_name: i'm curios; i thought there was a disproportionate number of people there with world class technical skills with few places to use those skills (why rissia is tied to so much cybercrime) … shouldn't it be easy to find android devs there ? Nov 06 09:20:38 (1) work for russian mafia (2) work for mail.ru … seems like a clear choice to me Nov 06 09:21:08 I can't believe how hard my hdds crapped out Nov 06 09:21:24 Also can't believe I'm actually succeeding in recovering some data off of a broken raid0 stripe Nov 06 09:21:29 Mail.Ru Group is big company Nov 06 09:21:47 and many android-developers work here Nov 06 09:21:57 (sorry for my english) Nov 06 09:22:10 lesha_name: your English is fine... Nov 06 09:22:40 i think i have more spelling mistakes :) Nov 06 09:23:12 But our company develops rapidly Nov 06 09:23:54 mobile mail, mobile messaging, mobile games, ... Nov 06 09:24:41 last week we bought My.Com domain name Nov 06 09:24:44 mobile home! Nov 06 09:24:45 :D Nov 06 09:24:59 and it is will our brand in foregin countries Nov 06 09:25:39 and of course, we need hith-skilled mobile developers Nov 06 09:26:00 high-skilled* Nov 06 09:26:32 mobile developers :) travel a lot :) Nov 06 09:26:40 :)))) Nov 06 09:28:09 ))))) Nov 06 09:28:51 went to Moscow once - long time ago... the shop in the hotel would only accept foreign currency, and gave change in bubble gum, because they refused to deal in rubles, but also refused to actually give out hard currency once they'd taken it Nov 06 09:30:43 and bears, of course Nov 06 09:30:47 its tough being an entrepreneur in russia; so many go to jail Nov 06 09:31:03 What's the current price for a trained, armored war bear that you can ride? Nov 06 09:31:20 with or without the laser on its head ? Nov 06 09:31:31 :>> Nov 06 09:31:33 )) Nov 06 09:31:58 dancing bears :D Nov 06 09:32:12 gay bears Nov 06 09:32:17 dancing bears with lasers … sounds dangerous Nov 06 09:32:26 Yeah Nov 06 09:32:28 :) Nov 06 09:33:00 the most dangerous: gay dancing bears with lasers :) Nov 06 09:33:40 i think that android-developer in moscow will have earned about $ 3000...5000 per month net. Nov 06 09:34:08 moscow is really expensive Nov 06 09:34:14 yes Nov 06 09:34:49 but it must be too good... I know somebody who is flying from germany every week Nov 06 09:34:53 ...to moscow Nov 06 09:35:11 too much vodka and drunk kooks Nov 06 09:35:31 mhm... maybe I should look for a new job as well. Nov 06 09:35:36 lesha_name: do you allow home office? Nov 06 09:35:45 no :( Nov 06 09:36:09 there are some reasons for it Nov 06 09:36:29 first, it is teamwork, scrum... Nov 06 09:36:31 lesha_name: I know the reasons Nov 06 09:36:54 but! we have cookies! Nov 06 09:37:31 bears loves cookies? Nov 06 09:37:32 lesha_name: can have cookies at home. what else? Nov 06 09:38:28 can you have teamlead at home?:) Nov 06 09:39:54 lesha_name: there is IRC, VoIP and I even heard of video conferencing Nov 06 09:39:55 well, i must to go Nov 06 09:40:00 lesha_name: hf Nov 06 09:40:38 Gre0rG, sorry, homeoffice is not possible ( Nov 06 09:40:57 i'm really sadly of it Nov 06 09:41:03 lesha_name: I can understand Nov 06 09:41:11 lesha_name: if you don't know someone, you need to have him on your side Nov 06 09:43:08 have a good day, bye Nov 06 09:43:38 naumenko (AT) corp.mail.ru (for any questions) Nov 06 09:45:05 <_yakubMobileDev> hello every one Nov 06 09:45:43 <_yakubMobileDev> I am implementing a app which uses the com.android.music.MediaPlaybackService and SensorListener Nov 06 09:46:25 <_yakubMobileDev> I have binded the default media player service with the intent where i can get the current track and all Nov 06 09:46:57 <_yakubMobileDev> but i want to implement a funtionality that will change the song when i shake the device Nov 06 09:47:03 <_yakubMobileDev> but i ma unable to do it Nov 06 09:47:17 <_yakubMobileDev> as i need to run 2 service for that Nov 06 09:47:24 <_yakubMobileDev> please help me Nov 06 09:54:45 hi, how can I disable the turning screen off while I have the usb plugged in (it's annoying when developing an app) Nov 06 09:55:09 evelyette: its in settings under developer options i believe Nov 06 09:55:16 not sure if its dev options or somewhere else, but its there. Nov 06 09:55:28 yeah, I've searched for it, but didn't find it Nov 06 09:55:31 it's like screen on during charging or something Nov 06 09:55:34 I have galaxy s3 Nov 06 09:55:35 perhaps its under screen Nov 06 09:56:51 jasta, it's not Nov 06 09:57:10 http://www.dwtutorials.com/tutorials/images/stories/tuts//android-device-connect_USB-debugging-options.png Nov 06 09:57:15 "stay awake" Nov 06 09:58:17 evelyette: you're blind, as butcher points out. Nov 06 09:58:39 no wonder I didn't find it, it's not thee Nov 06 09:58:42 there Nov 06 09:58:53 there is no stay awake option under developer options Nov 06 09:59:00 interesting Nov 06 09:59:42 it's android 4.0.4 Nov 06 10:00:04 that is bizarre Nov 06 10:00:22 although stranger things have happened when manufacturers open up eclipse. Nov 06 10:45:45 Does anyone have an application they can recommend for watch the US Election results? Nov 06 10:46:53 what's the correct way to add a button/view whilst animating it? Nov 06 10:58:20 why the hell doesn't apple have a web based search for their app store? Nov 06 10:58:58 kitallis: more context required. Tell the whole story of what you're doing. Nov 06 10:59:03 Are you adding one button? 10? Nov 06 10:59:32 tdignan, let's say 8, as soon as that activity shows up, I want these buttons to translate from the screen edge into their final positions Nov 06 10:59:40 is it always 8? Nov 06 10:59:45 will it ever be more than 8? Nov 06 11:00:08 tdignan, in the activity's lifetime, it's always static Nov 06 11:00:40 If it's 8, then put 8