[android-developers] Urgent requirement for Senior Java Developer - Sunnyvale, CA

2019-09-04 Thread MANIKANTA SR
Hi Everyone Hope you are doing well!! I had an urgent requirement as said below please go through it and contact me. *Job Title: Senior Java Developer.* *Job Location: Sunnyvale, CA* *Job Description:* •8+ years of Java design and development of web based application •

[android-developers] Urgent requirement for Technical Project Manager - Sunnyvale, CA/Austin, TX

2019-09-04 Thread MANIKANTA SR
Hi Everyone, Hope you are doing well!! I have a requirement as mentioned below. Let me know if you have any consultants*.* *Job Title: Technical Project Manager* *Job Location: Sunnyvale, CA/Austin, TX* *Job Description:* - Over all 10+ Year of experience in IT - Working as a Pro

[android-developers] Urgent requirement for Lead Engineer ( WPF DESKTOP )

2019-08-28 Thread MANIKANTA SR
*Hi everyone * *Please find the following requirement and send me your profile along with contact details if you are interested !* *Title: **Lead Engineer* *Location: Conroe,TX,USA,77032* *Job type: Full time - Regular * *Customer: Halliburton Energy Services* Job Description Title : WPF w

[android-developers] urgent requirement for SAP ABAP Consultant

2019-08-28 Thread MANIKANTA SR
*SAP ABAP Consultant (Replcement) Contract Holland, MI * *Mandatory Skills:* SAP ABAP, HANA *Role description :* • 8 to 10 years of ABAP programming experience with MM,PP,SD etc. in SAP R/3 environment. • Experienced in enhancing applications using Customer Exit, User Exits BADI, BTE and En

[android-developers] google play android uygulama

2016-05-10 Thread Turgay Sr
benim turkchat ve sohbet dr iki adet uygulama var . Sahte gmail adresi acip oy oranlarini düşürüyorlar ve kötü yorum yaziyorlar Lütfen bunun engellenmesini istiyorum We've There are twelve turk chat application. They reduce the rate of false votes gmail address acip they were writing

[android-developers] seekbar

2010-09-03 Thread sudeep sr
how to set circular thum to seekbar -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@google

[android-developers] /to Gold

2010-09-03 Thread sudeep sr
You can stat a new activity by using intent i=intent(current class,new class) i.startactivity(current class); //check spelling -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegro

[android-developers] Unable to see process in dalvik debug monitor

2010-08-18 Thread praveen sr
Hi all, I am Unable to see processes in dalvik debug monitor,when lanuch ddms form commad prompt. Thanks and Regards Praveen -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegro

[android-developers] Moving ADC non-winner to regular Market

2009-11-11 Thread SR
s? Thanks! SR -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.

[android-developers] ANR - when using google-json library to serailize.

2009-08-31 Thread sr
ips on how this can be dealt with outside writing my own serailizer? the gson code does seem a bit heavy weight. Thanks for any help. -sr I/ActivityManager( 60): ANR (application not responding) in process: com.jaldi5.portray I/ActivityManager( 60): Annotation: keyDispatchingTimedOut I/Activ

[android-developers] VideoView seekTo repositioning Video Frame displayed

2009-08-18 Thread sr
pause() Wondering if there is anything I can do to make the frame on display change when using seekTo to position the video stream. thanks, -sr --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] Re: PendingIntent Flag and AlarmManager behavior ?

2009-08-07 Thread SR
Dianne, Thank you for your explanations and time. I think the issue is clear now, and just a little bit more discussion remains on how to clarify it to others. > It does use filterEquals(). Agreed, but filterEquals() of the Intent class proper. Maybe making Intent.filterEquals() *final* would

[android-developers] Re: PendingIntent Flag and AlarmManager behavior ?

2009-08-07 Thread SR
Ok, then the documentation should not imply that AlarmManager.set(...) uses filterEquals(...) to compare the intents. It should say instead that (action, type, Uri, categories, component) are used for comparison of intents. Also, the documentation for PendingIntent currently explicitly says that

[android-developers] Re: PendingIntent Flag and AlarmManager behavior ?

2009-08-07 Thread SR
Ultimately, the only way I could get different intents to be scheduled with AlarmManager is to set different data URIs in the Intents that I was wrapping in PendingIntents and scheduling with AlarmManager.set(). I filed an issue about this here: http://code.google.com/p/android/issues/detail?id=3

[android-developers] Re: PendingIntent Flag and AlarmManager behavior ?

2009-08-06 Thread SR
No, that doesn't seem to be it :( I'm still getting only one broadcast from multiple closely scheduled events with AlarmManager. Moreover, neither the filterEquals() nor equals() methods of AlarmManagerIntent get invoked -- I'm not getting any printouts from overridden versions of these methods,

[android-developers] Re: PendingIntent Flag and AlarmManager behavior ?

2009-08-06 Thread SR
Dianne, Thanks! I think I figured it out about 30 minutes ago. In the AlarmManager.set(..) documentation, it says that intents are compared using Intent.filterEquals(Intent otherIntent), which, of course, does not compare the extras. One quick (and dirty) workaround would be to extend Intent w

[android-developers] Re: PendingIntent Flag and AlarmManager behavior ?

2009-08-06 Thread SR
I actually have the same problem with PendingIntent.getBroadcast (...). Only the last call to AlarmManager.set() actually triggers the broadcast to the receiver. It seems like PendingIntent.FLAG_ONE_SHOT is the right one to use, and I am getting different PendingIntents (judging by pointer value

[android-developers] Re: How to make EditText wrap lines of text / word wrap

2009-07-15 Thread SR
Whoops, silly me. I had android:singleLine="true" in my layout :( Stan On Jul 14, 6:34 pm, schwiz wrote: > i would think it should do it automatically if you have the width to > wrap_content > > On Jul 14, 4:44 pm, SR wrote: > > > Hi, > > > H

[android-developers] How to make EditText wrap lines of text / word wrap

2009-07-14 Thread SR
Hi, How do I make multiline EditText within a RelativeLayout wrap the lines of text that were entered? I want the user to enter one line of text without allowing line breaks, but show it broken up by words into multiple lines inside a rather smallish, square EditText window. Thanks for any clue

[android-developers] EditText cursor position in pixels/dip

2009-07-14 Thread sr
).toString(); TextPaint p = new TextPaint(); p.setTextSize(entry.getTextSize()); Rect r = new Rect(); p.getTextBounds(s, 0, s.length(), r); // using r.width() to get the position of interest. } } thanks, -sr --~--~-~--~~~---~--

[android-developers] Re: EditText & Tabhost problem

2009-04-26 Thread SR
Added to the Android bug list here: http://code.google.com/p/android/issues/detail?id=2516 On Apr 27, 12:57 am, SR wrote: > Confirmed as a problem in 1.5pre, in my own code on the emulator. > > Non-toplevelTabHost(meaning:  embedded in another layout) > willstealthe focus from

[android-developers] Re: EditText & Tabhost problem

2009-04-26 Thread SR
back to the first tab. SR On Apr 17, 5:36 pm, cvance383 wrote: > The problem I am having is I have a framelayout with a tabhost (& > widget & tabcontent) then I have another layout over top of the tabs > that looks like a form. It has two editTexts but when I type in the

[android-developers] App Engine/Google login integration

2009-04-26 Thread SR
Hi, I was wondering if there are plans (or currently available ways) of integrating Google login from the phone with App Engine sites. It would be desirable for the phone to submit GMail login credentials to App Engine sites without the user having to re-enter his/her name and password. Any tho

[android-developers] Re: Accessing System Brightness

2009-04-15 Thread SR
Dianne, Would you mind sharing a snippet of code on how to do this in Cupcake using the new API? Thanks! Stan On Apr 8, 3:49 pm, Dianne Hackborn wrote: > There is a new API to be able to force the screen brightness while your > window is on-screen. > > On Wed, Apr 8, 2009 at 12:08 PM, Todd Sj

[android-developers] Re: Call the developer!!

2009-02-27 Thread Kevin E. Phillips, Sr.
Yes, please for the love of all that is HOLY take this out of the marketplace. Isn't it enough we provide and email address and website? I cannot take the phone ringing 100 time a day asking when I am going to update my app and add such and such feature. Mattaku Betsujin wrote: > Please take re

[android-developers] Re: Paid applications - are they downloadable now? By Al Sutton

2009-02-20 Thread Kevin E. Phillips, Sr.
Agreed, Paid apps are in there, but I cannot purchase any of them. It's quite a lovely little bug/issue. aclelland wrote: > Paid applications are Live in the US but not the UK AFAIK. My google > checkout account has some purchases in it. > > On Feb 19, 9:45 pm, Josh Dobbs wrote: > >> seriousl

[android-developers] Android Market: server error when "authorizing credit card"

2009-02-20 Thread SR
Hi all, I've been trying to buy some apps but have been getting a server error after "Authorizing credit card..." bubble shows up. For about an hour or so... Anybody else have this problem? Maybe there are problems with the server and someone from Google ought to lo

[android-developers] Re: Getting user's phone number

2008-10-31 Thread SR
you make a new friend :) :)). > > Al. > > > > SR wrote: > > Ah, good question! > > > It also shows the wrongphonenumberin the aboutphonesection under > > Settings, the same wrongnumberas what getLine1Number() returns. > > > Stan > > > On Oct 30, 9:17 am,

[android-developers] Re: Getting user's phone number

2008-10-31 Thread SR
Ah, good question! It also shows the wrong phone number in the about phone section under Settings, the same wrong number as what getLine1Number() returns. Stan On Oct 30, 9:17 am, Hong <[EMAIL PROTECTED]> wrote: > when u go to the aboutphonesection in ur G1, whatnumberdoes it > show up there? >

[android-developers] Re: Getting user's phone number

2008-10-29 Thread SR
I'd have to be pretty dumb to confuse my phone with the emulator, wouldn't I? I'm also using a SIM card that I've had in other phones for a long while. It might have even belonged to a different phone with a different number, before I associated my current phone number with my phone account. Co

[android-developers] Re: Getting user's phone number

2008-10-29 Thread SR
I second this. On the G1, it returns a bogus phone number (somewhat similar to that on the emulator). Here's the code: TelephonyManager tm = (TelephonyManager) activity.getSystemService(Context.TELEPHONY_SERVICE); String phoneId = tm.getLine1Number(); I've got the following in the manifest fil