[android-developers] Re: I want to horizontally scroll a LinearLayout area

2008-04-27 Thread stefoid
OK, so I worked it out myself, sort of - Im still having issues with it, but at least I can get it to move. answer lies here: http://code.google.com/android/reference/android/view/animation/package-descr.html On Apr 28, 3:17 pm, stefoid <[EMAIL PROTECTED]> wrote: > I want to use 'kinetic' hor

[android-developers] How to use a content provider created by some other app

2008-04-27 Thread Naveen Garg
I am trying to access a content provider created by some other app. But not able to find a way. lease tell me how to do it. Some sample code will be of great help. Thanking in advance!! Naveen --~--~-~--~~~---~--~~ You received this message because you are subscri

[android-developers] paint on screen and "home" still visible, can android do it???

2008-04-27 Thread Wesley Sagittarius
paint on screen and "home" still visible, can android do it??? re-paint on screen when change screen and "home" still visible, can android do it??? Anyone have any idea?? Wesley Sagittarius. --~--~-~--~~~---~--~~ You received this message because you are subscrib

[android-developers] Re: How to Create a new Content Providers on Android Platform

2008-04-27 Thread Naveen Garg
Can you please tell me how to use a content provider which is created by some other app. On Apr 24, 4:02 pm, Hielko <[EMAIL PROTECTED]> wrote: > See the noteslist example in the sdk > > On Apr 24, 6:42 am, Naveen Garg <[EMAIL PROTECTED]> wrote: > > > > > I am trying to create a new content provid

[android-developers] How get incoming call phone number - Phone.getBackgroundCall()

2008-04-27 Thread Andrei Ivanov
Hi All, I would like get incoming call number in registered IntentReceiver, and I getting notification about incoming calls and from which phone call is received (in emulator named "GSM") with state "RINGING". Notification does not provide no more information, especially phone number. Using name

[android-developers] I want to horizontally scroll a LinearLayout area

2008-04-27 Thread stefoid
I want to use 'kinetic' horizontal scrolling on an a LinearLayout area. I did a quick search and found this widget called a Scroller that seemed to have an API that fit the bill - flings, interpolaters, etc... but then Scroller is only of use to a TextView? ScrollView seems like it is only a v

[android-developers] Progress of the evaluation process

2008-04-27 Thread Shamim
Can any body predict the progress of evaluation proccess! very few of this group has been received hit at the time of testing but feeling that it was not through check ? what about all others. I can't see any more news on this. please keep on posting your experience and acknowledge. so that we can

[android-developers] Re: use of Handler.post

2008-04-27 Thread hackbod
The ServiceStartArguments API demo is one example of associating a thread with a service: http://code.google.com/android/samples/ApiDemos/src/com/google/android/samples/app/ServiceStartArguments.html On Apr 26, 9:46 pm, "Dan U." <[EMAIL PROTECTED]> wrote: > I think what Hielko said still applies

[android-developers] Re: dialog user input box

2008-04-27 Thread Dan U.
Probably you should look into extending the Dialog class. Just specify your layout and whatever event handling you need in that class, then use it like a Dialog. In your case, I'd have some kind of setter method in your Dialog subclass to set an OnClickListener for whichever buttons you might have

[android-developers] Re: About negative byte 0xC0 = -61 != 0xC0

2008-04-27 Thread Ahmet A. Akin
i think it would be cool if byte type would be unsigned only. but you are right, they had to make a choice. 2008/4/27 Romain Guy <[EMAIL PROTECTED]>: > > How is that dumb? It's just a choice and most of the time it's perfectly > fine. > > > > On Sun, Apr 27, 2008 at 3:08 PM, David Given <[EMAI

[android-developers] dialog user input box

2008-04-27 Thread scimitar
Hi, I want my application to pop up a dialog box that asks for some user input. The user enters the input and clicks a button. Based on the text that the user has entered, the application then continues it's operations. How should I implement this? thanks --~--~-~--~~~---

[android-developers] Re: About negative byte 0xC0 = -61 != 0xC0

2008-04-27 Thread Romain Guy
How is that dumb? It's just a choice and most of the time it's perfectly fine. On Sun, Apr 27, 2008 at 3:08 PM, David Given <[EMAIL PROTECTED]> wrote: > Romain Guy wrote: >>> All Java types are unsigned (except char). Yes, that's dumb. >> >> No, all Java types are *signed* except char. > > D'oh!

[android-developers] Re: About negative byte 0xC0 = -61 != 0xC0

2008-04-27 Thread David Given
Romain Guy wrote: >> All Java types are unsigned (except char). Yes, that's dumb. > > No, all Java types are *signed* except char. D'oh! Indeed so. I seem to have missed a ! from the beginning of that statement. It's still dumb, though. -- ┌─── dg@cowlark.com ─ http://www.cowlark.com ─

[android-developers] Re: About negative byte 0xC0 = -61 != 0xC0

2008-04-27 Thread Romain Guy
> All Java types are unsigned (except char). Yes, that's dumb. No, all Java types are *signed* except char. -- Romain Guy www.curious-creature.org --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers

[android-developers] Re: About negative byte 0xC0 = -61 != 0xC0

2008-04-27 Thread Romain Guy
Hi, In Java, bytes are signed. The possible values range from -128 to +127. > if ( var == 0xC0) You are comparing a signed byte to an integer, Java simply convert var to an integer and compares it to the integer 0xC0 (192 in decimal.) You can verify this easily by decompiling the following sou

[android-developers] Re: About negative byte 0xC0 = -61 != 0xC0

2008-04-27 Thread David Given
My wrote: [...] > when i got into the debug mode and ceck the variable, the value was > -64 but the Hexadecimal value is (0xC0) Java bytes are signed. The Eclipse debugger shouldn't be showing you the value as 0xC0 --- that's incorrect; it should be giving you -40. In order to get what you want,

[android-developers] Thanks for all the media player control functions

2008-04-27 Thread [EMAIL PROTECTED]
I don't know if they are all functional yet, but there is enough stuff there to do what I want to do. I can just implement, actually cleaner and better than the original model. Thanks for anticpating applications with supporting code. --~--~-~--~~~---~--~~ You rece

[android-developers] About negative byte 0xC0 = -61 != 0xC0

2008-04-27 Thread My
hi im curious about htis problem. basicly im just reading from socket a byte value 0xc0. i verify it on the TCP packet and the value was C0. i read the socket using ByteArray. when i got into the debug mode and ceck the variable, the value was -64 but the Hexadecimal value is (0xC0) but this state

[android-developers] Re: failure to import java.rmi.RemoteException

2008-04-27 Thread joesonic
I have the same issue, If soneone could help, this would be great. On Apr 25, 5:28 am, scimitar <[EMAIL PROTECTED]> wrote: > Hi, > > When I try 'import java.rmi.RemoteException;', I get the message: > > 'The import java.rmi.RemoteException cannot be resolved'.  Why is > this? I really need this t

[android-developers] Bluetooth api

2008-04-27 Thread Prashant Kalkar
Does any one know when will the bluetooth api be available? Will it be available in the next SDK release? Regards Prashant --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this gr

[android-developers] Google Video: "What Will Drive Wireless Innovation?"

2008-04-27 Thread Lee S Dryburgh
I think most if not all will be interested in the panel video just uploaded to Google Video "What Will Drive Wireless Innovation?" here: http://video.google.com/videoplay?docid=6119551826989496388 Moderator Brough Turner (NMS Communications) Panelists- Martin Geddes (STL Partners), Stanley Chia

[android-developers] Re: Emulator Clock gives incorrect time

2008-04-27 Thread Digit
it's a known issue in both the M3 and M5 SDKs. A Next SDK release should fix this. sorry for the inconvenience On Sun, Apr 27, 2008 at 1:25 AM, Todd <[EMAIL PROTECTED]> wrote: > > This problem has been bugging me for a long time and I just can't > figure it out. No matter what I do my emulator cl