**** BEGIN LOGGING AT Mon May 26 03:00:00 2014 May 26 03:00:37 Does anyone have in depth knowledge of Android and libNFC? May 26 03:41:08 hey guys, what is this thing called? is this a tab host? http://i.imgur.com/uV0V2D3.png May 26 03:42:25 piracyd3: action bar tabs May 26 03:42:34 piracyd3: http://developer.android.com/design/building-blocks/tabs.html May 26 03:43:27 Oh, it's a fixed tabs. thanks May 26 03:44:11 i mean, it is not swipeable May 26 03:46:35 Hello . . . May 26 03:47:54 how about the tabs at the bottom of the instagram app? May 26 03:48:11 that has Feeds, Featured, Upload, and Progile May 26 03:48:16 Profile* May 26 03:49:02 piracyd3: i think you mean the bottom action bar May 26 03:49:29 Yea. How do I use image instead of text in the tabs? May 26 03:50:38 Beacuse right now my situation is similar to instagram's. I think i'm putting my tabs at the top, but as I have asked earlier, I have to put another tabs in one of these tabs. May 26 03:51:23 It'll look weird to have two ViewPager Tabs at the top though May 26 03:51:40 I might wanna distinguish one of those to use image instead of text May 26 03:53:59 Okay got it. I have to use .setIcon() May 26 04:38:54 hello all May 26 04:38:59 lasserix: you still around? May 26 04:39:13 Chainfire: hey May 26 04:49:16 hello all May 26 04:50:26 QubeZ yeah May 26 04:50:38 hey lasserix, glad I caught you May 26 04:50:52 thanks for that SO link -- I did end up changing my clone to just iterate through the array in a for loop May 26 04:50:55 testing it now May 26 04:52:04 still getting flase May 26 04:52:06 false May 26 04:52:26 hmm check the values are legit in the loop? May 26 04:53:17 will do some testing, thanks for sending me down the right path though May 26 04:53:37 Also umm May 26 04:53:48 boolean success = SensorManager.getRotationMatrix(R, I, gravity, geoMagnetic); May 26 04:53:51 let me post what I have so far May 26 04:53:53 but you use a switch May 26 04:54:06 so gravity OR geomagnetic will always be null? May 26 04:54:35 http://pastebin.com/u41maPnX May 26 04:54:53 dunno does getRot require gravity and geomag both be populated, or is it okay for one to be null / null set? May 26 04:55:02 ya I need to change that to both if's May 26 04:55:11 getRot needs both gravity and geomag May 26 04:55:32 because whatever computation it is doing then it's always passing in a null matrix and the resulting math will produce a bad matrix May 26 04:55:35 hence failure May 26 04:55:55 *since i think it does matrix multiplication which will give you everything multiplied by zeros May 26 04:56:08 ya I see my error now, in using the switch... I should not break it but I'll change to 2 if's May 26 04:56:11 ifs May 26 04:58:28 still failing May 26 04:58:36 damn.. will output to log the values May 26 05:00:11 values look legit May 26 05:00:46 but are you getting both grav and geo? May 26 05:01:16 yup May 26 05:02:13 I output the sensorEvent.values[i] and gravity[i] and sensorEvent.values[i] / geoMagnetic[i] and they are inline May 26 05:02:27 so I know my new float[3] is populated properly May 26 05:03:02 i'll review that SO link deeper May 26 05:05:01 http://techoutbreak.com/2011/android-ar-tutorial-part-1-device-orientation/ May 26 05:05:17 peeking May 26 05:37:30 lasserix: I found that I get values in my array for geoMagnetic only so often May 26 05:37:34 most of the time its 0's May 26 05:37:37 but others it has values May 26 05:37:39 ahh May 26 05:38:07 multiple ways to handle that May 26 05:38:11 what could cause that? May 26 05:38:39 you didn't set the polling to fast enough? May 26 05:38:44 be careful, drains battery May 26 05:38:51 make sure you need it... May 26 05:38:54 its get to DELAY_NORMAL May 26 05:39:08 how frequently is it non-zero? May 26 05:39:15 just don't update your orientation while its zero May 26 05:43:50 im doing exactly what the code you linked me but I just can't seem to get success May 26 05:44:34 except for the swtich/case, im using ifs May 26 05:46:18 https://android.googlesource.com/platform/frameworks/base/+/b267554/core/java/android/hardware/SensorManager.java May 26 05:46:23 so it fails if May 26 05:47:39 // magnetic north pole. Typical values are > 100. May 26 05:47:48 // device is close to free fall (or in space?), or close to May 26 05:48:41 did you add permissions to manifest? May 26 05:49:06 do I need specific permissions besides ? May 26 05:49:08 android.permission.ACCESS_COARSE_LOCATION // ACCESS_FINE_LOCATION May 26 05:49:11 yeah i think so May 26 05:49:18 that might be why May 26 05:49:27 I have to add COARSE? I thought COARSE is impled when you use FINE? May 26 05:51:50 dunno May 26 05:52:27 added it explicitly, still failing May 26 05:52:44 i'll have to read up more about this because I obviously have no clue what I'm doing with this May 26 05:53:49 hehe yeah May 26 05:53:55 why not copy a tutorial code May 26 05:53:58 and see if that works? May 26 05:54:35 will do May 26 05:56:09 probably is I can't find any up to date ones... all of the ones I find are TYPE_ORIENTATION which is deprecated May 26 06:02:52 qubez May 26 06:02:56 goto the source May 26 06:03:02 copy what that method does May 26 06:03:10 figure out why that if returns false (the norm) May 26 06:03:14 then that will tell you what's up May 26 06:06:13 so funny story, tapping on a notification doesn't always dismiss the keyguard on my samsung devices May 26 06:06:15 thoughts? May 26 06:24:18 hi, I have a device that had a factory reset done, I installed my app after turning on the usb debugging, then I made some changes and installed again and I get a INSUFFICIENT_STORAGE error May 26 06:43:47 hi, is it possible to pass a drawable resource to a constructor using R.attr.drawable_name instead of R.drawable.drawable_name ? I'm trying to use theme dependant drawables. May 26 06:44:45 I get a android.content.res.Resources$NotFoundException when I do it. May 26 06:52:37 hmmm May 26 06:57:49 JakeWharton: Thought so, will they do it like OkHttp 1.6 and support both for some time then drop OkHttp 1.x support or what are you planning to do? May 26 07:00:20 Dunno. Will probably just drop pre-1.x May 26 07:32:43 hi folks. I am using an aroma updater and trying to push files to system/lib. 80% of files worked but the remaining few all lose the READ attribute and dont work May 26 07:33:12 jewnersey please read topic May 26 07:33:59 go to #android-root ? May 26 07:34:06 ;) May 26 07:34:22 sorry bro May 26 07:38:04 JakeWharton: Guess if I still want to beta test OkHttp 2.0 I can pass the OkHttpClient as usual? May 26 07:38:13 To Picasso/Retrofit etc May 26 07:38:38 No. The API is completely different. May 26 07:38:44 ;_; May 26 07:39:27 Write your own Downloader for Picasso and Client for Retrofit May 26 07:40:32 Shouldn't be hard May 26 07:42:15 Someone already sent a PR for one of the two... Retrofit I think May 26 07:46:05 Nice, let's see if I find some spare time to integrate 1.6 and use the 2.x API. At least in dev enviroment May 26 07:53:08 Hi there. I saw that in the gradle plugin 0.10.2 incremental should finally work. Does it works for you guys? I'm getting a dex error (output here https://gist.github.com/rciovati/ede56a70c8828b4d737f) May 26 07:54:41 BUILD SUCCESSFUL May 26 07:54:43 ? May 26 07:55:52 anyone know chuck applications, it's like a trivia quiz May 26 07:56:59 gordon_, are you talking to me? May 26 07:57:07 yes May 26 07:57:15 just read your output May 26 07:58:12 Hello friends May 26 07:58:15 maybe it just doesnt work May 26 07:58:25 gordon_, yes. The first run (clean assembleDebug) is fine. The second, after changing one line of java, gives "build failure" (go on reading the output). May 26 07:59:23 of course, the second time I compile it's just assembleDebug and not a clean one. May 26 08:01:33 ah May 26 08:01:40 if that's the new project.. May 26 08:01:50 cant help really May 26 08:02:24 gordon_, have you tried the 0.10.2 with the incremental dexing turned on? May 26 08:02:58 no May 26 08:03:09 i can try at home May 26 08:03:39 ok, thanks May 26 08:04:07 I cannot understand if this happens just to me May 26 08:04:21 dont think so ;) May 26 08:22:20 so I messed up my nexus 7 soo bad it wont boot. Now Im unable to install drivers to connect adb or even attempt a sideload. May 26 08:23:15 installed nexus root toolkit and its instructions are 4 pages long and keeps telling me to go in or out of mtp mode, but I cant do that in cryogen restore, just sideload May 26 08:23:30 xmlnewbi, /topic May 26 08:29:19 facebook’s anonymous login is already available? May 26 08:30:13 Hi all, question about tabs: which components are used here? http://www-10.lotus.com/ldd/insidelotusblog.nsf/dx/sametime-meetings-app-for-android/content/M5?OpenElement to make the tabs with icon? Currently I use a PagerTapStrip for text but I want to try it out with icons May 26 08:34:25 I need something like this: viewpager which isn't scrollable because one page is a map (already done this), tabs header with icons which is scrollable and contains icons instead of text. I used the PagerTabStrip (suport v4), but it isn't scrollable, or is this possible. I also used the PagerSlidingTabStrip lib, tabs are scrollable but no icons yet. What should I use? May 26 08:36:19 autrilla, got your problem fixed? yesterday i didn't had the time to work on my idea for the onclick listener in the handle May 26 08:57:41 hey, i got a question on building the emulator from source. I followed the setup as described here http://source.android.com/source/initializing.html . i once managed to compile the emulator seperately by executing make emulator May 26 08:57:47 i have set up a new build environment and cannot build it like this anymore May 26 08:57:55 i dont know what i have done different the time before. make emulator now always returns no rule to make target May 26 08:58:00 any hints? May 26 08:58:10 wrong channel i guess May 26 08:58:58 or maybe I'm wrong ;) May 26 08:59:45 yes maybe it is the wrong channel. i was not sure ;) May 26 09:00:12 try on #android-root May 26 09:00:28 ok i will. thank you May 26 09:02:59 hey guys in what situation does the getActivity() method works? May 26 09:03:00 can i add something to the apk before the packaging task? Like some extra autogenerated files via the gradle script? Which can be packaged together with the application APK? May 26 09:03:20 is it in classes that extend activity? May 26 09:03:22 hmmm May 26 09:03:24 should be May 26 09:03:27 it would make sense May 26 09:03:28 jvrodrigues: fragment May 26 09:03:29 anyway thanks May 26 09:21:52 does somebody know which kind of tabs Facebook is using now in their android app? May 26 09:22:20 so i got another questino May 26 09:22:27 lets say i have a listview May 26 09:22:32 and a listener in that list view May 26 09:22:46 and i want that listener to perform a method that i have on my fragment May 26 09:23:03 should i pass an object of my fragment to my listview? May 26 09:23:07 doesn't feel right May 26 09:24:08 can't you work with a callback? May 26 09:24:25 maybe YES, maybe NOOOOO... May 26 09:25:03 please how can i develop android Ice Cream Dream home sreen May 26 09:25:34 Click66, can you point me to a tutorial where i can see how to develop one of those? May 26 09:25:35 sorry May 26 09:25:38 junior dev here May 26 09:26:08 or something related to that, actually, what i want to achieve is user welcome sreen after the user sign in May 26 09:26:21 FrancescoV: just use uiautomator May 26 09:26:26 so it will show you class May 26 09:26:27 ;) May 26 09:26:42 gordon, uiautomator??? May 26 09:26:57 hackable: ? May 26 09:27:11 I mean that uiautomator viewer May 26 09:27:12 gordon: YES! May 26 09:27:42 it shows classes just fine May 26 09:28:10 Okay, actually, i'm new to android dev, please is there any tutorial out their i can make use... or can guide me May 26 09:29:44 :) Im new too May 26 09:29:48 Im too afraid to ask stuff May 26 09:30:04 uhmmm.... don't be afraid, they are friendly.. May 26 09:30:13 sometimes :] May 26 09:30:23 especially, gordon is a nice fellow May 26 09:30:37 lol May 26 09:30:57 i'm asking him question and i'm hoping he will help and render assistance for me May 26 09:31:04 'i was being sarcasting' 'and I stole your face' May 26 09:32:21 Gordon: i discover uiautomator viewer is for testing but i need the one i can use to develop the interface... maybe using relativeLayout or any of the layout... May 26 09:32:57 Well, i think the room should welcome new developer to board, here... everyone is learning.. and we will continue to learn May 26 09:33:20 hackable: that was in response for someone else May 26 09:33:29 for your problem... i have no idea what you want to do May 26 09:33:44 and how to you want to implement login about signing it May 26 09:33:47 *signing in May 26 09:35:38 Oh okay, that's nice... let me explain what i want to achieve.,.. here, i am done with login and sign in screen, when left now is the page to show the user after it sign in, i want the interface to look like Ice Cream Dream or something related to that, where i can show the welcome message and other importance information to the user May 26 09:36:35 dont know what ice cream dream is May 26 09:36:55 but your problem begins, how do you want to login / sign in May 26 09:37:03 do you have some server ? May 26 09:37:04 Gordon: oh okay... http://blogs.computerworld.com/android/21314/hottest-android-home-screens May 26 09:37:34 Gordon:i'm going to make use of sqlite for the login / sign in.... May 26 09:38:00 sorry, i mean sign in and sign up page... May 26 09:38:01 how will data go there ? May 26 09:38:15 just prepare it on pc and put to assets ? May 26 09:38:23 if so, ok May 26 09:38:44 and ice cream dream seems not so hard to do May 26 09:39:20 after the user register, the data will be inserted into the sqlite database... May 26 09:39:31 and the user can login thereof May 26 09:39:39 k May 26 09:39:44 good, so how can i design such interface... May 26 09:40:03 ice cream dream May 26 09:40:43 it's not that simple to describe ;) May 26 09:40:59 what are the layout and elements to use.... May 26 09:41:54 uhmmm... thinking how you pass the knowledge across May 26 09:43:37 seems like a tough thing May 26 09:43:43 to describe quickly May 26 09:43:58 hackable: try finding an example that matches what you want on google May 26 09:44:35 Yes, i think so... but i believe Gordon will come up will good description. May 26 09:44:59 im quite busy ;) May 26 09:45:00 Shmooz: still searching online... never find reasonable tut May 26 09:45:08 you need viewpager May 26 09:45:13 and grid view May 26 09:45:30 with custom adapter May 26 09:45:59 Heres a fun question from Bawb, My application seems to really hate portrait mode. May 26 09:46:24 When I try and open it in portrait mode, it will crash when trying to switch to landscape May 26 09:46:49 but if originally opened in landscape, it will not crash in portrait mode if you go back to the home screen. May 26 09:47:15 Please my fellow... help me search for this online using your favorite search tool, i need information on how to develop Ice Cream Dream interface (Android). Thanks and appreciate your help May 26 09:47:17 What is the best practice to ensure the application will default open in landscape mode, regardless of what orientation the device is in May 26 09:47:26 hackable: what is icecream dream ?? May 26 09:47:45 Gordon: thanks for your time.. i really appreciate... you are such a wonderful guy with wonderful brain... lol May 26 09:48:06 Shmooz: check here http://blogs.computerworld.com/android/21314/hottest-android-home-screens May 26 09:49:58 hackable: do you wanna marry me or something ? ;) May 26 09:50:36 I will May 26 09:50:56 D'= But portrait mode is foiling me May 26 09:50:59 maybe, if you're available, i'll May 26 09:51:24 wanna married a smart guy like you... May 26 09:51:42 * gordon_ is blushing May 26 09:52:15 funny right... well, not funny! May 26 09:52:49 i've been searching... who knowns maybe you are the right person May 26 09:52:51 hackable: one looks like a grid layout and the rest is just linear horizontals inside vertical May 26 09:53:37 Shmooz:Yes. i think so May 26 09:53:54 maybe i should work toward Grid Layout.. May 26 09:54:46 :) May 26 09:55:15 Gordon: is really busy.. May 26 09:55:58 shmooz: or any idea on how i can achieve it May 26 09:57:58 Did anyone catch my question? May 26 09:59:25 Maybe Yes, Maybe No... #android-dev is always a busy channels.. May 26 09:59:57 When I try and open it in portrait mode, it will crash when trying to switch to landscape May 26 10:00:12 but if originally opened in landscape, it will not crash in portrait mode if you go back to the home screen and reopen. May 26 10:00:20 What is the best practice to ensure the application will default open in landscape mode, regardless of what orientation the device is in May 26 10:00:34 BigBawb: http://asset-8.soup.io/asset/1118/3236_8ff9.jpeg May 26 10:02:21 thinking? but gordon is busy May 26 10:03:31 Well I don't really get an error May 26 10:03:55 When it switches over it pretty much goes switch->onStop()->onDestroy() and just closes May 26 10:04:24 Is there a way to get it to just open in landscape mode, rather than opening in the orientation the device is in, then switching May 26 10:04:46 yes it is -> in maniseft set activity orientation to landscape May 26 10:04:57 *manifest May 26 10:07:55 :P if this works you will have solved so many problems for me May 26 10:10:27 It will work, trust him... he is my guy! May 26 10:10:34 D'= It worked May 26 10:10:39 that was literally May 26 10:10:40 weeks May 26 10:11:08 I told you! May 26 10:12:20 Gordon is a good guy, the only disappointment is that he left me with my problem. May 26 10:12:31 BigBawb: are you happy npw May 26 10:12:42 hackable: i need to program too ;) May 26 10:13:00 and your problem is not that easy to describe in few words May 26 10:13:26 I understand, but 5minutes out of your time is not too much... atleast i'm a friend and maybe... May 26 10:13:50 is yet Android 4.2.2 build compatible with linux 32 bit ? Seem in platform the x86 arm gcc is only for 64 bit.... May 26 10:13:56 Yes, you can help me by putting some code in pastebin or somewhere i can check May 26 10:14:16 hackable: it's not 5 minutes May 26 10:14:40 i dont have code now :D May 26 10:14:42 Okay, how many minutes... Please! my client are waiting for me... May 26 10:15:04 hackable: http://www.javacodegeeks.com/2013/04/android-tutorial-using-the-viewpager.html May 26 10:15:07 okay, what kind of representation can you do to reeally describe it for me.. May 26 10:15:46 got that... more May 26 10:16:29 hackable Im not sure that.... its gonna be that easy May 26 10:16:45 of course it's not May 26 10:16:59 Gordon: can i have your skype, maybe sometime we can talk May 26 10:17:31 I'll appreciate BigBawb also, maybe we can share knowledge sometimes May 26 10:18:28 Skype! May 26 10:18:40 no May 26 10:18:57 Ok. thank... May 26 10:19:04 Ok. thanks... May 26 10:49:40 <_95A31_> Hi guys I have same issue of this https://android-open-source-xperia-project.googlecode.com/issues/attachment?aid=520000001&name=Screenshot_2014-05-05-16-05-32.png&token=ABZ6GAdVDwY_NBDOAVi4zsw97fGF8JAbIg%3A1401101317226&inline=1 some ideas ? May 26 10:51:25 need code examples, not crappy screenshots May 26 10:56:54 :) May 26 10:59:23 i think this is the best android development blog: http://www.timelesssky.com/ May 26 11:02:01 Hi there. May 26 11:08:30 hello May 26 11:10:54 Hi :) May 26 11:11:24 frojnd: hi May 26 11:12:04 I'm trying to implement android preference so when user enteres some value in EditTextPreference this value is immediatelly shown under android:summary I found this http://enzam.wordpress.com/2013/09/29/android-preference-show-current-value-in-summary/ but I don't know how to use this class May 26 11:12:10 hi thepoosh May 26 11:12:54 I already know how to show static values of android:summary="@string/someStaticValue" but I need like username or addrss that user entered May 26 11:16:21 Any ideas? May 26 11:28:06 hi frojnd May 26 11:28:13 are you nordik? May 26 11:32:37 nope May 26 11:37:33 hey all ~! May 26 11:41:26 does PIcasso need disk write permission? May 26 11:46:08 Hi there! Is there anyone available who has some insights into contacting Google regarding developer accounts / apps on the Play Store? Our apps got removed (ok...) and our developer account got locked, as well - requests for reinstatement have been denied - I guess from the automated copy&paste system Google keeps to hold Developers at bay. May 26 11:46:42 Is there any way to contact a real human at Google about problems like ours? May 26 11:49:03 is there any better way to authenticate twitter than twitter4j? May 26 11:49:36 i am working on an app for my gsoc project and we were thinking if we could improve that. May 26 11:49:55 it uses twitter4j with signpost for now May 26 11:57:05 frojnd: ah ok, i thought you were a nordik May 26 11:57:25 due to high number of consonants May 26 12:05:23 anyone know of a good tutorial or a library which shows how i can create the review dialog which is used on google play? (How to create the stars button list, and in the new versin the image which floats halfway outside the dialog window) May 26 12:07:37 XskillMedia there are few things more difficult than getting a hold of a live person at Google. What sometimes works is going through the Play help system and use one of their contact forms, then select one of the contact reasons from their (very shortsighted) list, and after some back and forth when you finally get in touch with a real person, tell them the real problem May 26 12:07:57 on the other hand, it is probably easier just founding a new business and making money with that May 26 12:10:17 why cant i pm install /any/path/i/like/myapp.apk May 26 12:10:22 it seems to only like /sdcard ? May 26 12:11:00 help me out my nordik brothers May 26 12:15:18 nick9998, can you install in /sdcard/anypathyoulike? May 26 12:15:22 chainfire: heh, thank you for the heads up - I'll give that a try, It can't really get worse. Founding a new business to be listed in the play store - that sounds like a lot of effort, especially around here where founding a proper business costs in the vicinity of 50 grand. May 26 12:16:22 I believe paths other than /sdcard are for the most part system only May 26 12:16:36 Syzygy: i see May 26 12:17:07 nick9998: /any/path/i/like is only accessable for root May 26 12:18:22 I would recommend /sdcard/any... May 26 12:18:41 danijoo: i am root tho May 26 12:20:51 nick9998: so did you enter su first inside the console? May 26 12:21:39 snudel: i ssh intothe phone as root. my $UID is 0 May 26 12:22:47 mh i never worked with ssh for phones. May 26 12:23:01 does this do the same as adb shell with su May 26 12:23:04 i think so. May 26 12:23:11 i think so too May 26 12:23:35 can you cd to /any/path ? May 26 12:23:49 ls, cp and stuff? May 26 12:24:16 the actual path is /root/HuntRunner2/jackpal/examples/HuntRunner2/bin May 26 12:24:26 one of generic settings of this Android 2.2 asks me "Are you sure? Yes/No" every time I switch it on. I often switch that setting. how that alert could be disabled ? May 26 12:24:39 but yes it is fine May 26 12:24:52 hm. thats weird nick9998 May 26 12:25:10 yea, hella weird May 26 12:25:53 hello everybody May 26 12:26:08 hello everybody May 26 12:26:16 dominuskernel: sup slut May 26 12:26:35 Alex_I: I dont think this is possible unless you compile your own rom May 26 12:26:40 what setting is it? May 26 12:28:56 danijoo: the info you gave is sufficient. I will not touch then. It rises when I turn on "Use packet data", and the alert message is long (not as I wrote). Just annoying, but can endure it :) May 26 12:29:14 ok :) May 26 12:30:42 Anyone try and include an arm exe with their app? am running 4.x devices, can't seem to get around permission denied May 26 12:31:00 lasserix: yes May 26 12:31:43 so i have it in assests, copy it to data/data/internalappspace/ with some streams, then try and use runtime / process to start it but i get permission denied May 26 12:32:01 maybe u should set execute permission May 26 12:32:05 do you know which folder it is supposed to reside in? I see different takes (/bin /home /etc) May 26 12:32:18 nick9998 can you show me the code to do so from inside java code? May 26 12:32:24 sure pal May 26 12:32:49 i was trying all sorts of things, nothing seem to work... May 26 12:33:12 File binary = new File(binDir, "execpty"); binary.setExecutable(true, false); May 26 12:33:28 where File binDir = new File(dataDir, "bin"); May 26 12:33:46 and dataDir = "/data/data/internalappspace/"; May 26 12:33:54 hmm i did try that May 26 12:34:05 can you show me the code to actually execute it? May 26 12:34:12 sure May 26 12:34:16 i couldn't figure out if i was to use runtime or process or processbuilder May 26 12:34:19 can u check permissions with ls -l May 26 12:34:42 you mean thru adb shell? May 26 12:34:49 sure May 26 12:35:01 u might need to go su to get in there May 26 12:35:14 I'm trying to add some libraries via gradle so that they'll show up when I type gradle -q dependencies, those I add via a maven repository work fine, but those i add from my local file system with "compile files ('mylib.jar')" don't show up. May 26 12:35:17 umm yeah i can--not at the moment though about a thousand overdo commits before i can switch branches ;p May 26 12:35:26 IS there a simple way I can make them show up? May 26 12:35:50 anyway i use: ProcessBuilder processBuilder = new ProcessBuilder(cmdline, "-s"); Process p = processBuilder.start(); May 26 12:36:34 cmdline="/data/data/poo/bin/huntd-arm"; May 26 12:36:57 ahh ok May 26 12:37:11 do i have to copy it into a directory with bin as relative root? May 26 12:37:14 the "-s" you probably dont need May 26 12:37:52 that should already be done at this point. May 26 12:38:10 ahh i see May 26 12:38:14 no wonder May 26 12:38:15 cool thanks May 26 12:38:16 ! May 26 12:38:22 by the asset copying and permission setting, also a folder 'bin/' needs to be created May 26 12:38:35 i'll let you know if i can get it to work once i finish ui side of things May 26 12:39:00 thank you--i really appreciate the help! May 26 12:39:31 cool May 26 12:39:34 https://github.com/zielmicha/emacs-android-app/blob/master/examples/widget/src/jackpal/androidterm/sample/telnet/LaunchActivity.java May 26 12:39:47 check oout setupBinDir() in there May 26 12:40:58 perfect thanks! May 26 12:41:15 this should get me another day off next week :) May 26 12:41:49 i havent worked since jan2013 May 26 12:41:57 fuck i am so useless May 26 12:42:11 like alec baldwin May 26 12:42:14 heh May 26 12:48:11 Anyone have any thoughts on the best way to architect click delegation for multiple types. Ie, i have a viewableresult class, which holds the view-model state: in the case where the model is homogenous (each generating result will have a title, subtitle, icon, etc) but the controller is not (if you click result type a, does one thing, result type b, does another), what's the best way to handle it? May 26 12:49:28 either i could subclass viewableresult into its respective generating result type. or i was expirementing with creating static ClickFunction objects, setting them for each viewableresult based on generating result type, without subclassing the viewable result (so, encapsulating and abstracting just the controller, using a static instance for each type to avoid needless creation and switching) May 26 12:50:08 *ohh i guess i should say the multiple result types are all elements in a list view May 26 12:53:15 With gradle I can use my local filesystem as a maven repository, right? May 26 13:07:23 Syzygy, yes May 26 13:13:28 lasserix: you're using alot of big words there May 26 13:21:39 this question has been on my mind for a couple of weeks and i have been spending my memorial day weekend coding a demo from scratch that my boss said he needed tuesday on thursday night. ;! May 26 13:21:59 u some kind of lawyer or something May 26 13:22:06 hehehe May 26 13:22:08 no why? May 26 13:22:18 say it to me in english doc May 26 13:23:11 i want to be able to dynamically set a unique click function for a certain type of object in a listview that contains multiple types of objects May 26 13:23:21 without using switches May 26 13:23:45 and creating no more total objects than necessary May 26 13:24:04 ahh hooray my extant list adapter worked on the first try May 26 13:24:42 iterate thru the list, you can check class with say, .instanceOf() May 26 13:24:46 about 4ms faster than standard adapter that uses viewholder and convertview caching May 26 13:24:54 nick9998: that's a switch May 26 13:25:03 no switching is one of the conditions May 26 13:25:13 what do you mean by switching? May 26 13:25:23 you are saying switch on the class type May 26 13:25:41 switch (x) { case1 : y; case 2: z ... May 26 13:25:42 ? May 26 13:25:51 althought it probably doesn't matter because this switch happens atomically when the user clicks, but May 26 13:25:54 yeah May 26 13:26:10 iterate thru the list, switching on the class type (using instanceof) May 26 13:26:20 the point is not to switch at all May 26 13:26:24 why are you not allowed to 'switch'? May 26 13:26:29 it is slower May 26 13:26:39 i see May 26 13:27:04 i say that, but what i mean is my motivation is not to enable the cpu to do thread context switching May 26 13:27:15 and logical branching is a place where that can happen May 26 13:27:25 hence no switching May 26 13:28:42 although now that i think about it, doesn't really matter when a user clicks because the click is happenning only one at a time May 26 13:30:28 what about making that method 'synchronized' May 26 13:30:48 umm not sure how that would help? May 26 13:31:01 yea me neither, just spitballing May 26 13:31:35 heh May 26 13:31:46 are you working on any personal android projects atm? May 26 13:32:06 yea, a couple May 26 13:33:01 rciovati, but whatever I try, it seems like my local repository is getting ignored. May 26 13:33:58 you could try to paste the code May 26 13:34:37 one moment May 26 13:35:51 recently i got the android SDK working on my phone itself May 26 13:36:36 so i got that going for me, which is nice May 26 13:37:30 I am looking to get started with android development. I have looked at phonegap that looks promising. I basically just want to use geolocation / do simple rest-api calls. Does anyone have experience with phonegap? May 26 13:37:32 project/mainproject/build.gradle is the root project and called first, it calls several submodules. the one that has issues lies in project/submodules/androidapi/core/ this folder has a build.gradle file and a /libs/ folder that is set up like a maven repository May 26 13:37:55 more like, would anyone recommend me to *not* use phonegap? perhaps it is the wrong way to start? May 26 13:40:10 rciovati, http://pastebin.com/3U8kEU3n here's the code I use May 26 13:41:12 Hey guys, i just started developing a Point of sale "like" app and plan to use fragments for the first time, should i just go with 1 activity and all other fragments or? (I have login, register, main, and preview layouts). May 26 13:43:07 anyone know of a good tutorial or a library which shows how i can create the review dialog which is used on google play? Im specifically wondering how they managed to create this top header layout: http://cdn.androidpolice.com/wp-content/uploads/2014/05/nexusae0_wm_2014-05-15-22.15.18.png May 26 13:46:36 rciovati, can you give me your attention for a bit, I'll have to leave in 15 minutes May 26 13:48:34 Syzygy, I don't see any issue in your declaration May 26 13:49:30 are those repositories valid? May 26 13:49:40 the path is ok? I'm not sure if i should reference it from the root or the core build file May 26 13:50:06 (the code i linked is in the core build file) May 26 13:50:50 in my experience as your declared it it should be fine May 26 13:50:51 what makes a repository valid? the files were put there via a mvn install command May 26 13:51:34 http://maven.apache.org/plugins/maven-install-plugin/examples/specific-local-repo.html I used this command May 26 13:52:25 ok it should be fine too May 26 13:52:33 but I'm not exactly sure if a repository needs to be specifically created ... or how... The resources I found weren't exactly clear, but from what I understood the file structure is enough May 26 13:52:34 sorry, dunno. May 26 13:53:55 and the file structure should be valid since it was created via that command May 26 13:56:59 mpajor: phonegap is probably not want you want to do May 26 13:57:06 espicially for something as simple as you are wanting May 26 13:57:17 geo + restful + simple ui is easy enough to just code up, May 26 13:57:26 my vertical scrollbar isn't showing for :( May 26 13:57:37 probaly with phonegap is js is a nightmare and lots of little bugs in the corners of things which are hard to debug May 26 13:57:46 anyone have tried to replicant chuck quiz? May 26 13:58:38 is that a meme virus that will slowly lower our iq by one point every megasecond? May 26 13:58:59 he wants to find out if we are robots May 26 13:59:18 ahh i c May 26 13:59:20 yes we are May 26 13:59:26 does not compute May 26 13:59:59 i drink oil May 26 14:00:07 i was human once, then i printed my original body using state of the art 3d printer. then i replaced my original body with my new printed body. am i a robot? a clone? myself? dare i pass the halting test? May 26 14:00:47 my hero is bending unit #4440x02 May 26 14:02:52 point your squishy eyeballs at : https://www.youtube.com/watch?v=fEBV7okDdq8&feature=kp May 26 14:03:28 i am enroute May 26 14:03:46 I'm using this: https://github.com/JafarKhQ/Android-ViewPagerIndicator but my icon's arent centered horizontal, what should I use to get this done? May 26 14:11:09 yes i got my scroll bar working May 26 14:12:14 im the king of the world!! May 26 14:12:19 Any ideas how should i implement live support to app in a way like VNC is working (most of customers dont have roooted devices) May 26 14:13:14 ArcaneWater: http://www.timelesssky.com/ May 26 14:40:40 argh ive really come to detest this techno-eutopia brandspeak May 26 14:40:59 how do i set android:layout_width="100%" for May 26 14:41:14 whats the parent view? May 26 14:41:19 oh May 26 14:41:23 that's match_parent May 26 14:41:35 or if you use linearlayout you can use layoutweight May 26 14:41:57 by setting width to 0dp and layoutweight to some number, all views with layout weigth set will recieve that fraction of space May 26 14:42:28 so layout weight 1 width = 0 on left text view and wrap content on right textview in a horizontal linear layout will make left textview take up all space that rigth text view doesn May 26 14:43:15 cool thanks i will try it May 26 14:50:40 I want to port my C++ MeeGo app to android and I'm debating if I should learn java and use eclipse as DE or try to port my C++ code and use creator, what do you think? May 26 14:52:29 use NDK May 26 14:52:35 best May 26 14:52:56 I#ll look it up May 26 14:54:06 cool May 26 14:57:35 fuck it i will just hardcode the 400dp May 26 14:57:43 i cant figure this shit out May 26 15:06:38 nick May 26 15:06:42 post your xml file May 26 15:07:57 k hang on May 26 15:09:52 http://pastebin.com/fLhBWpGn May 26 15:10:20 so without the 400dp for the , it chooses around 150-200dp May 26 15:13:34 you should be using May 26 15:13:35 match_parent May 26 15:13:39 fill parent is deprecated May 26 15:15:00 Is there a way to restore reference to a long running thread? For instance, store its name in onSaveInstanceState, and restore reference in on create, to check if the thread .isActive()? May 26 15:15:20 http://pastebin.com/u4Tf1UyU May 26 15:15:45 is that row supposed to be like texttexttext okaybutton or did you want them stacked vertically? May 26 15:16:01 qkzoo1978: you can retain it. May 26 15:16:16 isn't that retain method deprecated tho? May 26 15:16:18 the string literal copyright_info is multi-line May 26 15:16:20 or store a reference in a singelton May 26 15:16:30 ahh May 26 15:16:36 Yeah? any examples or links? May 26 15:16:57 so i should change every fill_parent to match_parent? May 26 15:16:58 google application singelton android and then put your threadexecutor in there May 26 15:17:01 yeah May 26 15:17:09 okay i will give a try May 26 15:17:20 i doubt it will fix the problem, but fill is deprecated so maybe May 26 15:17:57 qkzoo1978: you can use this, and modify it on your needs http://www.fattybeagle.com/2011/02/14/android-asynctasks-during-a-screen-rotation-part-i/ May 26 15:18:18 Thank you :) May 26 15:18:20 i wouldnt mind just use the mouse to drag rectangles around May 26 15:18:27 like a cool guy in 2014 might do May 26 15:19:10 this is the same shit as java AWT from 20 years ago May 26 15:19:26 now there's this and SWT and who knows what else May 26 15:19:27 nick9998: true.. :( May 26 15:19:50 Hmm, Im using Thread instead of async May 26 15:20:04 nick9998: also the text view is maybe wrap content not match parent May 26 15:20:20 qkzoo1978: but you can adopt the strategy May 26 15:20:23 for the width? May 26 15:20:39 just give your thread the variabled/methods needed May 26 15:20:48 Thank you, I'm doing some more reading. May 26 15:21:08 or store your thread in a singelton with a getter/setter for the reference May 26 15:21:19 but i would go with retaining it properly May 26 15:21:44 nick9998: can you draw a simple png mock up? May 26 15:21:57 you want everything to be centered in this scroll view (centered horizonatally?) May 26 15:22:12 yea exactly May 26 15:22:27 scrollview contains linearlayout contains textview May 26 15:22:48 i would like the width maximized minus padding May 26 15:22:55 of the whole shebang May 26 15:24:03 Chainfire: thank you for your tip again -talked to a Google rep, lets see if it amounts to anything if she passes on our request! May 26 15:25:23 if im making a converter app, does it make most sense to do it this way.... have a single layout with a spinner and then a couple of buttons and textfields/edittexts, so the spinner chooses the conversion type, but the buttons and textfields are actually the same xml elements with the same ids.... there is no reason to create new buttons/fields for every spinner selection right? May 26 15:26:00 nick9998: try this http://pastebin.com/9KJdeeCs May 26 15:26:19 njcomsec: yeah May 26 15:26:25 cool May 26 15:26:47 hey guys in lower resolution screens the keyboard goes over the text input boxes May 26 15:27:18 is there a way to extend the view so the user can scroll down ti see the rest of the input boxes? May 26 15:27:22 yeah i remember that frm terminator 2 May 26 15:27:57 terminator used a keyboard? May 26 15:28:17 jvrodrigues: http://stackoverflow.com/questions/17410499/difference-between-adjustresize-and-adjustpan-in-android May 26 15:28:20 jvrodrigues: put them in a scrollview ? May 26 15:28:28 forget which one you want May 26 15:28:43 return Base64.encode(enc_user_name + ":" + enc_password); results in "cannost resolve method "encode(java.lang.string)" May 26 15:29:07 robocop used a dataspike May 26 15:29:16 thank you fella May 26 15:29:20 Jesperhead: Base64.encode needs a byte[], doesnt it? May 26 15:30:03 so you have to call it like this: return Base64.encode((enc_user_name + ":" + enc_password).toByteArray()); May 26 15:30:29 or toBytes(), not sure.. May 26 15:30:37 ohhh I see. I declared the two variables as bytes, but I guess that doesn't account for the ":" May 26 15:31:06 :) May 26 15:31:24 hrm my ide doesnt show me encode to byte May 26 15:32:51 lasserix: i tried it, the width is less than if i used "400dp" May 26 15:33:06 do i need to set something for the Activity in AndroidManifiest.xml? May 26 15:35:39 no May 26 15:35:39 hi , I want to fake browser in HTTP post request from android app. I’m using HttpUrlConnection, properly set request properties, even User-Agent as “Mozilla…etc”. Despite these settings, server response still somehow know that call is from Android, he’s returning X-Android-… headers in response. May 26 15:35:47 anybody can help ? May 26 15:37:53 PetoU: have you iterated all your headers: http://developer.android.com/reference/java/net/URLConnection.html#getHeaderFields() to see what is being sent? May 26 15:38:41 http://requestb.in/ could also be of use in your case May 26 15:38:46 oh nick9998 try setting the background color of the text view May 26 15:38:51 and verify its size May 26 15:38:56 k May 26 15:38:58 you can figure out which one is being the costraint May 26 15:39:00 that way May 26 15:39:47 clever May 26 15:40:17 yeah a mice running the same maze a thousand times ought to exhibit the same kind of cleverness ;p May 26 15:41:40 despite all your rage... May 26 15:41:44 danieloskarsson , I iterated all headers with .getRequestProperties(), and there are only those fields whose I manually set previously May 26 15:42:33 then I would use request-bin to verify the entire request May 26 15:42:55 that and previous attempts is all the input that the server is getting, could be that your ip is cached May 26 15:43:04 thx for the link, im gonna try that May 26 15:43:52 its the same size of the activity itself May 26 15:44:14 the background color May 26 15:46:13 nick are you using eclipse? May 26 15:46:24 you can go into WISGEY editor for xml May 26 15:46:28 and then click around May 26 15:46:32 and see what size it is May 26 15:47:22 but i need to get away from the monitors for a while, good luck. thanks for the help with executables May 26 15:47:30 no worries May 26 15:47:32 i will figure it out May 26 15:47:37 or hardcore May 26 15:47:42 hardcode* May 26 15:47:52 thanks May 26 16:00:20 nick9998: http://pastebin.com/VPkQcNnP May 26 16:00:25 that works on my phone May 26 16:00:27 textview expands May 26 16:01:11 hi there ppl May 26 16:01:28 any ppl around done something with calendars / events ? May 26 16:01:41 nick9998: http://pastebin.com/k9JxmY7S oops gravity on textview is fixed May 26 16:02:03 sure bulle May 26 16:02:04 cool i will try May 26 16:02:06 i'd like to render .ics calendar format data any good idea's ? May 26 16:03:55 download a bunch of calenders and pick what you like best May 26 16:04:08 lol :P thats what i done already :D May 26 16:04:36 but actualy there is no good project i can find. Most of them are old,inactive and or crap :) May 26 16:04:48 find out what you dont like and don't do that May 26 16:05:06 but i think i would be okay with just parsing the ics calendar and display it as calendar view May 26 16:05:22 ugh May 26 16:05:30 the native calendar view is terrible May 26 16:05:33 yeah May 26 16:05:41 plus not supported on oldies May 26 16:05:50 its from android 4 i think? May 26 16:06:09 i want to support from api 10 May 26 16:06:12 or even lower May 26 16:06:19 i would do something like a column gridview with a fast side scroller whereby each "unit" of time is a big chunk of screen and you can use side scroller to quick pass by hours May 26 16:06:31 then with tab + viewpager you can swipe into May 26 16:06:41 "day at a glance" May 26 16:06:49 and then swipe one more time for "month at a glance" May 26 16:06:54 yeah but that is the display part May 26 16:07:09 werent you asking about rendering? May 26 16:07:09 im more like wanting to know how to parse the ics format May 26 16:07:19 and then render it :P May 26 16:08:15 http://stackoverflow.com/questions/2983831/how-to-parse-ics-file-in-java May 26 16:08:40 lasserix: hmm, still the width is around 150-200dp May 26 16:08:49 on your phone it spans accross from left to right? May 26 16:08:51 is this in a dialog? May 26 16:08:55 yeah May 26 16:09:08 yes my activity has android:theme="@android:style/Theme.Dialog" May 26 16:09:19 that could be why May 26 16:09:23 i see May 26 16:09:50 do i need to subclass that style? May 26 16:10:00 umm May 26 16:10:02 no May 26 16:10:09 not theme.dialog May 26 16:10:15 you can pick whatever theme or no theme May 26 16:10:28 anyways anyways now i really gota get away from the moniter, can feel my eyes liquifying every so tangentally May 26 16:10:31 good luck! May 26 16:10:38 thanks, May 26 16:10:46 go for a boat ride May 26 16:16:15 hey, just starting with android development here, could someone give me a hint on how to communicate from a notification to a service? May 26 16:16:36 The SDK manager lets me download a "google repository", can I somehow look up whats on that repository? May 26 16:19:14 fucking boat ride genius! May 26 16:19:42 Syzygy: good question. have that downloaded too and no idea whats in it :D May 26 16:20:11 SDK/extras/Google/something May 26 16:20:42 It's just folders and jars/aars May 26 16:20:50 And poms May 26 16:21:10 yeah, but I would still like to have a list May 26 16:22:03 SimonVT: in this folders are my libs for gps and billing (which are seperate points in the sdk manager) May 26 16:22:07 Syzygy, this is the m2repository content for play services http://pastebin.com/NPVWj6A3 May 26 16:22:58 so it's just gms, alright, thanks May 26 16:25:07 I have a service with a BroadcastReceiver how would I toggle that receiver from a notification with a button? May 26 16:30:16 danijoo: Yes, it's both available as an android library project and in the maven repository May 26 16:30:27 ah. thanks May 26 16:33:58 if I'm phrasing my questions wrong or too broad please tell me May 26 16:36:44 Memorion: You'd use a pendingintent May 26 16:36:53 Just like if you'd like to start an activity May 26 16:37:06 This should be covered in the documentation May 26 16:37:49 SimonVT I have trouble understanding how I "get" that intent May 26 16:38:56 https://developer.android.com/reference/android/app/PendingIntent.html#getService(android.content.Context,%20int,%20android.content.Intent,%20int) May 26 16:39:27 despite all my rage, i am still just a rat in a cage May 26 16:40:50 SimonVT so I just check in onStartCommand if this is the first "normal" intent to start the service or the one from my notification? May 26 16:41:24 You can set extras on the intent or something if you'd like to know who started it May 26 16:42:56 Ok thanks, that helped! May 26 16:52:32 putting a double quote in your string resource in strings.xml is an assmar May 26 16:54:20 but dont worry,the end is nigh May 26 16:54:39 actually maybe worry about that May 26 17:37:20 Hi May 26 17:39:54 I'm using play game services to create a leaderboard. In my MainActivity I extend from BasicActivity and the user logs in. When the user hits play, I start another activity for result, then get the score in onActivityResult. The problem is that if I immediately try to submit the score in onActivityResult() the GoogleApiClient is not logged in (even though it was when the activity first started). I tried running a Handler with 2000ms delay and the May 26 17:39:54 n it works. Why? May 26 17:40:52 Why does the client disconnect? May 26 17:43:26 hello all May 26 17:50:16 compac: probably because it's no longer in the current activity, when you launch the score fetching activity. You probably want to put it in a service and do your comms through that. May 26 18:49:52 if you have one fragment on top of another fragment, how do you ensure that focus is on the top fragment? May 26 18:50:09 so swipe events and touch events won't go through to the fragment undeerneath May 26 18:50:11 *underneath May 26 18:55:30 hmm, setting an empty onclick listener seems to work May 26 19:22:57 I get this "com.android.dex.DexException: Multiple dex files define Lcom/google/gson/JsonSerializer" when I use retrofit as a dependency in my build.gradle file. May 26 19:44:04 HashNuke: probably have a differ version of gson as a dependency from a different dependency? May 26 19:56:12 hi May 26 19:56:44 im trying to read a pdf from a local directory and open in a pdf reader app May 26 19:57:12 im creating a new intent to open the pdf May 26 19:57:20 Intent target = new Intent(Intent.ACTION_VIEW); May 26 19:57:20 target.setDataAndType(result, "application/pdf"); May 26 19:57:49 where result is my Uri May 26 19:58:24 I place a question on stackoverflow was wondering if someone could check it out: http://stackoverflow.com/questions/23876798/adding-unique-buttons-dynmaically hopefully its not asking too much May 26 20:03:17 well actually aneed to download and show a pdf file but i dunno the best way to do it May 26 20:03:23 can someone help? May 26 20:20:31 tiagowanke: What have you tried and what problems have you encountered? May 26 20:21:35 flan3002: well, first i download a pdf from a url and store into a byte[] May 26 20:22:32 than i im using FileOutputStream to write this byte[] May 26 20:22:56 tiagowanke: And then passed the URI to the View intent? May 26 20:23:00 yes May 26 20:23:10 What's happening? May 26 20:23:12 Intent target = new Intent(Intent.ACTION_VIEW); May 26 20:23:13 target.setDataAndType(result, "application/pdf"); May 26 20:23:13 target.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); May 26 20:23:13 startActivity(target); May 26 20:23:33 my pdf app shows that the document path is not valid May 26 20:23:40 The entrance exam to work at Best Buy is a test to see how well you can lie at the tests. May 26 20:23:43 *result is my Uri May 26 20:24:09 Have you verified the path? May 26 20:24:32 u mean if i have verified if the file exist? May 26 20:24:39 Like... Output it and see of it's correct. May 26 20:24:49 At that very path. May 26 20:24:59 Are you certain that the URI you are getting is not downloads://blabla May 26 20:26:16 If it is you can't know the location, just have to open a handel to the uri. May 26 20:26:47 s/handel/handle May 26 20:28:03 i tried like this and it works, but i dont think its a good solition May 26 20:28:45 When you are getting an intent from the download manager there isn't a better one that I have found. May 26 20:28:57 FileOutputStream fileOuputStream = ctx.openFileOutput("myFile.pdf", Context.MODE_WORLD_READABLE); May 26 20:29:31 then i was wrintting my byte[] into this fileoutputstream May 26 20:29:49 Yeah, you are making two copies. May 26 20:29:50 but MODE_WORLD_READABLE is deprecated May 26 20:32:19 do you control where the file is saved? May 26 20:32:31 or is this something the user gets from a browser? May 26 20:33:31 the user click a listview item, this download a pdf file from a url May 26 20:33:59 so i have the pdf as a byte[], i want to show this pdf with the pdf read app May 26 20:34:41 so i though that i should save the file in getCacheDir() and then create a intent to show this file May 26 20:34:42 But the intent might expect a path, so you have to write it out... May 26 20:35:07 Yes, what's wrong with that? May 26 20:35:19 nothing May 26 20:35:22 i think May 26 20:37:12 so when i create my intent i add a data as a Uri poiting to this file that i have stored at the getCacheDir May 26 20:37:27 and i set a flag granting permission to read May 26 20:39:16 Hi, anybody has been using monkeyrunner here? May 26 20:39:44 I have an issue that a button is able to be clicked manually in the emulator, but not from a script May 26 20:39:46 it closes the app May 26 20:45:02 as in, you need it to not be clicked? I think you can detect if you're running in monkey; you'd just have to detect that in your onclicklistener and not do anything May 26 20:45:24 no i need to click it May 26 20:45:30 but when monkeyrunner does it May 26 20:45:36 it clicks, and it makes the app close May 26 20:45:39 to be closed* May 26 20:46:03 is there anyway i can debug what is really happening? May 26 20:47:45 if you're crashing there will be logs in logcat May 26 20:49:42 if I try to comment out half of an element's xml styles, it comments out but I get a start tag error on the line before the