Looks like he's at it again: https://groups.google.com/forum/?fromgroups=#!msg/android-developers/Wos0Zu0IdFM/N0ua3NAgzk4J , this time he answers a question by telling the poster to do what they've already done in the code sample they included. What bothers me is that it seems like he doesn't actually give the questions he answers any real thought, all he would really have had to do is post a link to the relevant source code but instead he just offers up a vague and useless piece of information.
On Mon, Mar 4, 2013 at 1:53 AM, <[email protected]> wrote: > Today's Topic Summary > > Group: http://groups.google.com/group/android-developers/topics > > - remove blue strip below Tab with > actionbar<#13d342e5d641b7ba_group_thread_0>[1 Update] > - getExternalFilesDir(null) <#13d342e5d641b7ba_group_thread_1> [4 > Updates] > - Performance Problem with ListView / Styled > TextView<#13d342e5d641b7ba_group_thread_2>[1 Update] > - When and how are LayoutParams examined, aside from onLayout and > onMeasure <#13d342e5d641b7ba_group_thread_3> [6 Updates] > - Web service + SSL + KSOAP2 + .pfx <#13d342e5d641b7ba_group_thread_4>[1 > Update] > - two activities running at same time<#13d342e5d641b7ba_group_thread_5>[4 > Updates] > > remove blue strip below Tab with > actionbar<http://groups.google.com/group/android-developers/t/7f2486017a869698> > > sree android <[email protected]> Mar 04 11:13AM +0530 > > Hi friend, > Thank you for gave replay for my query,can you provide any example on > this > concept.please. > > Thank you in advance. > > ...more<http://groups.google.com/group/android-developers/msg/ce3e1708ea832c6d> > > > getExternalFilesDir(null)<http://groups.google.com/group/android-developers/t/483151ccac611baf> > > dashman <[email protected]> Mar 03 02:11PM -0800 > > I'm calling context.getExternalFilesDir(null) and get > > /storage/sdcard0/Android/data/<my-package>/files > > calling Environment.getExternalStorageDirectory() i get > /storage/sdcard0 > > ...more<http://groups.google.com/group/android-developers/msg/888bfa3b1041a4b7> > > > dashman <[email protected]> Mar 03 02:21PM -0800 > > in file explorer, i see a path to /storage/sdcard1 > but there doesn't seem to be an api to access it. > > especially with the data/<my-package>/files setup > > ...more<http://groups.google.com/group/android-developers/msg/d95d5b630481c765> > > > TreKing <[email protected]> Mar 03 04:37PM -0600 > > > > in file explorer, i see a path to /storage/sdcard1 > > but there doesn't seem to be an api to access it. > > Correct. There is only "internal" and "external", where the latter is > not > ...more<http://groups.google.com/group/android-developers/msg/e6273b310139d570> > > > Manish Srivas <[email protected]> Mar 04 10:31AM +0530 > > Environment.getExternalStorageDirectory() > > it gives you sdcard access > > ...more<http://groups.google.com/group/android-developers/msg/274ca9768087c7d0> > > Performance Problem with ListView / Styled > TextView<http://groups.google.com/group/android-developers/t/73343d832aa2238a> > > Simas Galinis <[email protected]> Mar 03 04:04PM -0800 > > > > Btw. I re-use the convert view etc. The performance degradation only > > happens when I style the output. > > I had a similar problem. When I noticed the increased garbage > collection in > ...more<http://groups.google.com/group/android-developers/msg/37914dade227ac91> > > When and how are LayoutParams examined, aside from onLayout and > onMeasure<http://groups.google.com/group/android-developers/t/5a8b3466ed087453> > > Piren <[email protected]> Mar 03 12:35AM -0800 > > I'm no expert on the layout machenism of android, but you dont really > need > a reference to the LayoutParams to do these calculations since > onMeasure > gets the "processed" values of these params. > ...more<http://groups.google.com/group/android-developers/msg/d659ab75ce603776> > > > momo <[email protected]> Mar 03 01:56AM -0800 > > Thanks for the reply. > > The custom layout isn't doing *just* that - it's doing a lot of other > stuff, and I figured it'd be more practical to just have it layout all > it's > children as they should > ...more<http://groups.google.com/group/android-developers/msg/9405bcd2e9191f3c> > > > Romain Guy <[email protected]> Mar 03 09:52AM -0800 > > You call measureChildren() which in turns call measureChild() which > looks > at the LayoutParams of each child. > > ...more<http://groups.google.com/group/android-developers/msg/4ece20d0dc9a4b37> > > > Michael Dunn <[email protected]> Mar 03 02:01PM -0600 > > Thanks Mr. Guy. What would be the minimum required to use a value > instead > of LayoutParams (on the entire tree)? I don't believe this works: > > @Override > protected void onMeasure(int > ...more<http://groups.google.com/group/android-developers/msg/ffaa6f3220f7bcdb> > > > Romain Guy <[email protected]> Mar 03 12:34PM -0800 > > All you have to do is call measure() on the children yourself. Or you > could > just use layout params :) > > ...more<http://groups.google.com/group/android-developers/msg/7e9f6a3ac80c0d9e> > > > Michael Dunn <[email protected]> Mar 03 04:41PM -0600 > > Thank you. > > > ...more<http://groups.google.com/group/android-developers/msg/fbff822445e78dc0> > > Web service + SSL + KSOAP2 + > .pfx<http://groups.google.com/group/android-developers/t/fa91c5b3952b2961> > > mbarbiero <[email protected]> Mar 03 12:58PM -0800 > > I need to access a web service using a client certificate in a .pfx > file > and KSOAP2 2.6.5. > Any idea??? > Thanks in advance! > > ...more<http://groups.google.com/group/android-developers/msg/56f8b5a6288fc017> > > two activities running at same > time<http://groups.google.com/group/android-developers/t/9ac017a2f32c8870> > > Piren <[email protected]> Mar 03 12:47AM -0800 > > i think everyone just forgot to mention the obvious and what you > seemed to > get wrong: > At no point what so ever were your activity and the other acitvity > running > at the same time. > > ...more<http://groups.google.com/group/android-developers/msg/2469ade11639119e> > > > Kristopher Micinski <[email protected]> Mar 03 10:54AM -0500 > > Well, since a Service is just an Activity without a UI, you still get > the same behavior... > > You shouldn't be running blocking operations in a service either (even > if they're scheduled a bit more > ...more<http://groups.google.com/group/android-developers/msg/7f1ba097a564535e> > > > Piren <[email protected]> Mar 03 08:43AM -0800 > > Ahh.. i might have been too simplistic when i said they are an > activity > without a UI, i dont want to pass the wrong impression: you'll get > what > appears to be similar behavior, but it isnt... > ...more<http://groups.google.com/group/android-developers/msg/77a6034957989b4c> > > > Kristopher Micinski <[email protected]> Mar 03 12:18PM -0500 > > To clarify: I wasn't correcting your point about using blocking > operations. > > Services are handled differently in Android with scheduling, etc..., > and have more options as to when and how they run. > ...more<http://groups.google.com/group/android-developers/msg/e79b49e5f4df2a1c> > > You received this message because you are subscribed to the Google Group > android-developers. > You can post via email <[email protected]>. > To unsubscribe from this group, > send<[email protected]>an empty message. > For more options, > visit<http://groups.google.com/group/android-developers/topics>this group. > > -- > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > --- > You received this message because you are subscribed to the Google Groups > "Android Developers" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- -- NOT Sent from an iPhone -- -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en --- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

