i have my Laptop away, i cant send u but its the Code but its calling that class again and again. The last method. The last method. On Aug 28, 2012 8:39 PM, <[email protected]> wrote:
> Today's Topic Summary > > Group: http://groups.google.com/group/android-developers/topics > > - I need help <#1396fd17d4585edb_group_thread_0> [3 Updates] > - MapFragment <#1396fd17d4585edb_group_thread_1> [1 Update] > - Is certificate pinning possible to do with a > WebView?<#1396fd17d4585edb_group_thread_2>[1 Update] > - ViewPager and setClipChildren(false)<#1396fd17d4585edb_group_thread_3>[4 > Updates] > - TableRow in list view Postion <#1396fd17d4585edb_group_thread_4> [1 > Update] > - detect weather incoming call fron landline number or mobile > number<#1396fd17d4585edb_group_thread_5>[2 Updates] > - Use of shapes for background <#1396fd17d4585edb_group_thread_6> [1 > Update] > - Android custom view (very basic) <#1396fd17d4585edb_group_thread_7>[1 > Update] > - Are there any official Google sponsored training seminars/classes, > etc? <#1396fd17d4585edb_group_thread_8> [2 Updates] > - ACRA <#1396fd17d4585edb_group_thread_9> [1 Update] > - Getting mapview as image <#1396fd17d4585edb_group_thread_10> [1 > Update] > - need to allow user to draw a region on Google > map<#1396fd17d4585edb_group_thread_11>[2 Updates] > - how to set two spinners with different strings and > icons?<#1396fd17d4585edb_group_thread_12>[3 Updates] > - how to .setText of a String with different > colours?<#1396fd17d4585edb_group_thread_13>[2 Updates] > > I need > help<http://groups.google.com/group/android-developers/t/1d612207df4f3055> > > Errol <[email protected]> Aug 28 03:51PM -0700 > > running mac os x 10.5.8 with eclipse juno which may be the whole > problem in > the first place, after going into my utilities to check java > preferences, I > see two java apps j2se 5.0 and 1.4.2 now its for me to figure out how > to > get those android packages to interact with my eclipse > program.....please > help > > > > > Lew <[email protected]> Aug 28 04:21PM -0700 > > Errol wrote: > > java [sic] preferences, I see two java [sic] apps j2se 5.0 and 1.4.2 > now > > its [sic] for me to figure out how to get those android [sic] > packages to > > interact with my eclipse [sic] program..... [sic] please help > > > Eclipse is not the problem. > > What "utilities" did you "go into"? Are you referring to the menu > entry > "Eclipse/Preferences/Java/Installed JREs"? > > Java 5 is obsolete. Upgrade to Java 6 or 7. Follow Eclipse's > instructions > for making the new JRE (JDK, in your case) one of the "Installed JREs". > I use Eclipse for Android work and I've installed the Java SE 6 that > is the > MacOS X default - well, actually, Eclipse installed it for me when I > installed Eclipse. > > What Android packages are you trying to get to "interact" with > Eclipse, and > what do you mean exactly by "interact"? > > Did you download the Android Development Kit (ADK) and associated > tools > as instructed on the Android web site? Did you download and install > the > Eclipse > Android plugin as instructed on the Android web site? > > -- > Lew > > > > > Errol Raymond <[email protected]> Aug 28 08:29PM -0400 > > I was referring to utilities folder in my application directory also > after > trying to install jdk7u6 it returned a javascript error > I am using leopard so I guess there is no getting around that if I > need a > later version osx, due to the fact that this is the latest version for > my > system > I suppose if eclipse had installed the java package for me then I would > have no problems with getting the android sdk manager to run, but for > me > this is not the case > I believe that I followed the instructions correctly, and could be > wrong so > I will try to get jdk 6 or better installed before crying for more help > I want to get to the part of installing the android packages right > after I > install the adt plugin and restart eclipse, but I didn't get the > dialog to > run after restart (interact - for lack of a better word) > thanks > > > > > > MapFragment<http://groups.google.com/group/android-developers/t/29f133be089b6d9e> > > metal mikey <[email protected]> Aug 28 05:03PM -0700 > > I made a little library, mashing up the LocalActivityManager-based > solutions for the MapFragment problem: > > https://github.com/coreform/android-tandemactivities > > > > Is certificate pinning possible to do with a > WebView?<http://groups.google.com/group/android-developers/t/1382d351f295e35d> > > paladin <[email protected]> Aug 28 04:50PM -0700 > > Not via an explicit https connection, but using a WebView, can I make > it do certificate pinning? > > > > ViewPager and > setClipChildren(false)<http://groups.google.com/group/android-developers/t/448111c54706a508> > > "Romain Guy (Google)" <[email protected]> Aug 28 03:23PM -0700 > > Thesalan, it's incorrect. setLayeType(View.LAYER_TYPE_SOFTWARE, null) > always works, no matter how or if hardware acceleration is enabled. > > On Tuesday, August 28, 2012 3:18:18 PM UTC-7, Thesalan wrote: > > > > > Thesalan <[email protected]> Aug 28 03:28PM -0700 > > Ok thanks! But when I do it on the ViewPager, the clipping stay... I > will > try again tomorrow, it's late for me here ;) > > Thanks again! > > Le mercredi 29 août 2012 00:23:03 UTC+2, Romain Guy (Google) a écrit : > > > > > Kostya Vasilyev <[email protected]> Aug 29 02:29AM +0400 > > Thanks for clarifying, I stand corrected. > > -- K > > 2012/8/29 Romain Guy <[email protected]> > > > > > > Dave Smith <[email protected]> Aug 28 04:45PM -0700 > > Thesalan - > > Calling setLayerType() on just the View will work, but you have to do > it on > the correct view. In this case, the issue that doesn't work with > hardware > acceleration is the parent ViewGroup clipping its children, so the > PagerContainer in the example is the view that you need to call it on, > not > the ViewPager itself. If you modify PagerContainer.java in the gist > like > so: > > private void init() { > setClipChildren(false); > setLayerType(View.LAYER_TYPE_SOFTWARE, null); > } > > You should be able to enable hardware acceleration in your manifest > and the > pager code will still work as expected. I will update the gist example > when I have a spare moment with some discussion, and I have starred > the > issue Mark created (you should do the same). > > Cheers, > Dave Smith > @devunwired > > On Monday, August 27, 2012 2:29:20 AM UTC-6, Thesalan wrote: > > > > TableRow in list view > Postion<http://groups.google.com/group/android-developers/t/36cfd72d8787557d> > > Justin Anderson <[email protected]> Aug 28 04:43PM -0600 > > > { > > String s="Rahul"; > > } > > I fail to see how anyone other than yourself would have been able to > come > up with an answer like this based on your initial question... > > As a reminder your initial question was this: > > how to find the particular table row TableLayout from the ListView > > Please sugest > > Thanks, > Justin Anderson > MagouyaWare Developer > http://sites.google.com/site/magouyaware > > > On Mon, Aug 27, 2012 at 10:17 PM, Rahul Kaushik < > [email protected]>wrote: > > > > > detect weather incoming call fron landline number or mobile > number<http://groups.google.com/group/android-developers/t/8424ccfa7c8176e8> > > "A N K ! T" <[email protected]> Aug 28 11:35PM +0530 > > Sorry, no api to detect this. > > > > > > Lew <[email protected]> Aug 28 02:17PM -0700 > > A N K ! T wrote: > > > Aashish kumar wrote: > > >> Anyone help me ,how to detect wether the incoming call from > landline > >> number or moblie number, is there any API for it. > > There are perhaps online services that will look up a number for you > and > return information about it. > > Some might have a Web Services or RESTful API. If such services exists > they likely charge money. > > Whether any of such services can distinguish landline from cellphone > calls > is another question. > > When I call you with my Google Voice account, you cannot tell if I'm > calling > from a landline or cell phone or some third way. That's because I > could use > any of those ways and you will see the same number in your Caller ID. > > So your question is not generally solvable. > > -- > Lew > > > > Use of shapes for > background<http://groups.google.com/group/android-developers/t/3b5542fb1e9211c3> > > bob <[email protected]> Aug 28 02:11PM -0700 > > Why not extend android.widget.RelativeLayout and implement your own > onDraw > method? > > > > On Friday, August 24, 2012 5:08:54 AM UTC-5, Pau Rodríguez Coloma > wrote: > > > > Android custom view (very > basic)<http://groups.google.com/group/android-developers/t/f3bb068ff415ea59> > > bob <[email protected]> Aug 28 02:06PM -0700 > > You need width and height. Add these: > > *android:layout_width="fill_parent"* > *android:layout_height="fill_parent"* > > > On Monday, August 27, 2012 1:09:10 PM UTC-5, Victor Reboucas wrote: > > > > Are there any official Google sponsored training seminars/classes, > etc?<http://groups.google.com/group/android-developers/t/6e3cfc5ebf3200dd> > > Josphat Muchiri <[email protected]> Aug 28 01:47PM -0700 > > Ok man,there are google based training in mobile application > development > which take place in local universities here in kenya,i attended one > this > year from may to august and the training is totally free coz its google > sponsored after the training there is a workshop where you develop > apps for > competition,this initiative is still on and during the training free > start > up manuals are provided which is easy to follow as a beginner until > creation of simple apps to complex ones,if interested yoy can email me > and > i can send you the soft copy manual plus other useful materials and i > can > really assist you man,let me hear from you pliz,nyt > On Aug 28, 2012 11:02 PM, "RKS" <[email protected]> wrote: > > > > > RKS <[email protected]> Aug 28 02:00PM -0700 > > @Kris > > Thanks for the tips. We're in Houston so UH is reputable and offers > traditional coursework in Android-specific application development. > That > certainly is an option, but I haven't had time to research the > prerequisites and see if taking a course outside as a non-degree > seeker if > you can show competency in those required courses. Something to think > about, thanks. > > @ Satya > > Unfortunately we're only a small 6 man shop with only 2 really working > day-to-day on development that would take this training. > > @Mark > > Your last comment is the easiest, as we're located in Houston. That > said, > as long as the training is in the continental US, we're willing to > travel. > So I didn't really mention that since a) I didn't think about it and > b) it > doesn't matter since we'd go anywhere. > > Researching an instructor is good advice. In college I had to schedule > my > courses around each other and couldn't be so picky sometimes to hold > off on > a particular instructor. I can certainly see your point, though. I > just ask > about official Google because that's easiest at this point. For those > who've been around the Android block a few times it might be easier to > determine an individual's worth. For me, I'm just getting started. You > may > be able to recognize many key names or others who have been > contributing to > Android for quite some time and I would tell you I've never heard of > them > before. Then there's the guys who have developed apps, but are they > learning from, etc. > > Thanks for the tips. I will look into everyone's comments and > suggestions. > > > > ACRA<http://groups.google.com/group/android-developers/t/2a59fa2d5cad69c0> > > bob <[email protected]> Aug 28 01:46PM -0700 > > Can someone help me understand how ACRA works? > > Does ACRA.init() call this function? > > public static void > setDefaultUncaughtExceptionHandler(Thread.UncaughtExceptionHandler eh) > > > > Getting mapview as > image<http://groups.google.com/group/android-developers/t/99dacf2570be6927> > > vijay Badawadagi <[email protected]> Aug 28 01:52PM -0500 > > > http://stackoverflow.com/questions/5939987/android-take-screenshot-via-code > > Try this > > Thanks > Vijay > > > > > need to allow user to draw a region on Google > map<http://groups.google.com/group/android-developers/t/b5bbb8ab11a96918> > > dica <[email protected]> Aug 28 09:37AM -0700 > > Hi guys > > I'd like to allow a user to draw a region on top of a Google map and > get > the GPS coordinates of the drawn region. Can somebody advise how this > is > done? > > Tks > > > > > Mark Murphy <[email protected]> Aug 28 12:48PM -0400 > > > I'd like to allow a user to draw a region on top of a Google map and > get the > > GPS coordinates of the drawn region. Can somebody advise how this is > done? > > On the second part, the Projection object can convert between pixel > coordinates and microdegrees. > > On the first part, you will need to intercept touch events and draw on > an Overlay, I guess. > > -- > Mark Murphy (a Commons Guy) > http://commonsware.com | http://github.com/commonsguy > http://commonsware.com/blog | http://twitter.com/commonsguy > > _The Busy Coder's Guide to Android Development_ Version 4.1 Available! > > > > how to set two spinners with different strings and > icons?<http://groups.google.com/group/android-developers/t/e4ad7ef2eed05235> > > Justin Anderson <[email protected]> Aug 28 10:23AM -0600 > > You have asked this question multiple times... I tried helping you on > the > other post, and even explained many things that you were not doing > right. > > But sure... go ahead and post your code again. > > Thanks, > Justin Anderson > MagouyaWare Developer > http://sites.google.com/site/magouyaware > > > > > > > Sobia Awan <[email protected]> Aug 28 09:26PM +0500 > > shall i send u my coding again? > > > > > -- > *Sobia Awan* > * Bs(cs)* > ** > > > > > Sobia Awan <[email protected]> Aug 28 09:45PM +0500 > > actually i got solution of "intent in spinner" not this so if it will b > possible for u then please reply me...Thanks > > > -- > *Sobia Awan* > * Bs(cs)* > ** > > > > how to .setText of a String with different > colours?<http://groups.google.com/group/android-developers/t/9a5d5db914af9956> > > oriolmesia <[email protected]> Aug 28 08:52AM -0700 > > Hi I'm Oriol and I want to set a string like this one: > > H*i,* > A*ll!* > * > * > in the textView I've created on my layout. (One String in only one > textView) > > > But the matter it's that I don't know how to set a different colour > for > some specific characters inside my string. (Like in the example I show > here) > > Does anyone knows how to do it? > > > Thank you very much, > > > Oriol > > > > > "Harri Smått" <[email protected]> Aug 28 07:03PM +0300 > > > > Does anyone knows how to do it? > > This article is a good read for SpannableStrings; > > > http://www.chrisumbel.com/article/android_textview_rich_text_spannablestring > > -- > H > > > > 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 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

