[android-developers] android on NVIDA Tegra ?

2008-06-26 Thread rezar
Does any body have any information about android integrity with NVIDA Tegra ? I hope Android support XVGA. If there is a phone with strong camera and that new NVIDIA mobile CPU, I think it will going to be really big step for Android success. --~--~-~--~~~---~--~~

[android-developers] Re: Mobile capabilities from AJAX

2008-06-26 Thread Jose María González
Thanks Hong, that sounds great. Could you please provide me with more info. I have no idea hoy to implement the bridge between my application and the webkit. Some links will be very helpfull. On Jun 25, 8:20 pm, Hong [EMAIL PROTECTED] wrote: the webkit supporst full ajax. as for dialing

[android-developers] Re: Wifi SDK Available ?

2008-06-26 Thread iovis80
I'd like to use android to develop a my program but it's mandatory to have access to wifi module. Is there any possibility to do this? if there is not i have to change development platform :( On 25 Giu, 21:30, Digit [EMAIL PROTECTED] wrote: WiFi and Bluetooth emulation are not planned for the

[android-developers] Newbie questions.

2008-06-26 Thread F999KR
Hey everyone. I'm a super newbie, and when I say super newbie, I mean this is college level speech to a baby for me . First of, I know I need to know Java, but what other program languages would I need to know to jump right in there? Second, does anyone know if the Android UI will be

[android-developers] Dynamic Class Loading

2008-06-26 Thread Hsun-Cheng Hu
Hi all, Is it possible to load class dynamically from file system or Internet?? I found all classes are pack into a dex file. I had tried to use URLClassLoader to load the dex file, but it failed. any idea?? Hsun-Cheng Hu --~--~-~--~~~---~--~~ You received

[android-developers] Re: java SE and the emulator

2008-06-26 Thread kellogs
No more help needed. Issue solved kellogs On 20 Iun, 13:36, kellogs [EMAIL PROTECTED] wrote: Hi, I am the happy owner of a desktop computer running on win xp, jdk 1.6.0.4 and android sdk m5.rc14. On this computer I have managed to develop an application for andoid under eclipse IDE using

[android-developers] Hello world problems

2008-06-26 Thread amitshetty
I am embarrassed to be posting this here, but I cant figure it out... Am trying Android for the first time. Installed Eclipse 3.4.0, installed the plugins, unzipped the sdk and followed instructions to create the hello world app. Ran the Android app. The emulator fires up, but nothing on the

[android-developers] Re: Newbie questions.

2008-06-26 Thread Mark Murphy
Hey everyone. I'm a super newbie, and when I say super newbie, I mean this is college level speech to a baby for me . You may also be interested in the android-beginners Google Group, then, in addition to this one. First of, I know I need to know Java, but what other program languages would

[android-developers] Re: Wifi SDK Available ?

2008-06-26 Thread Digit
it depends exactly on what you need to do. if you perform operations that require root permissions, this won't run on an unmodified Android phone, due to our security model. on the other hand, there will likely be some sort of network service that should export an interface to client libraries

[android-developers] Importing a layout xml file from a remote server

2008-06-26 Thread kingkung
Is this possible? Can I import an android layout xml file from a remote server, and use it within the application (without writing my own parser)? If not, is there an easy way to parse out a remote xml file and create a layout on the fly? Thanks, James

[android-developers] Re: Hello world problems

2008-06-26 Thread Bruno Sauer
My best suggestion is don't be embarrassed : It looks like you might be having the same problem I, and undoubtedly countless others have had. After firing up the emulator, the solution (which I found by accident) is to go take a coffee break ! The emulator is a BIG program and there's a lot

[android-developers] Re: android Smack

2008-06-26 Thread Micka
i discovered that the error is here : smack 3.0.4 : smack/XMPPConnection.java if (isFirstInitialization) { // Notify listeners that a new connection has been established for (ConnectionCreationListener listener : connectionEstablishedListeners) { listener.connectionCreated(this); == in

[android-developers] Re: Hello world problems

2008-06-26 Thread Alfredo Gonzalez
Hi I have tried to create my first hello world with Android but when it initiates the emulator comes a text that said Android and then a red light from one side to another and not run my application that may be? Thanks! --~--~-~--~~~---~--~~ You received

[android-developers] Question about LayoutAnimation2.java from the ApiDemos sample project

2008-06-26 Thread DS
Hello, Hoping that someone can provide some insights into how android animations work. In the onCreate() method of file LayoutAnimation2.java, we have the following AnimationSet being created AnimationSet set = new AnimationSet(true); Animation animation = new

[android-developers] Re: Hello world problems

2008-06-26 Thread Alfredo Gonzalez
The same problem...when i ran the emulator shows a console window with the text ping sent out after the emulator don't run the application. Thanks!!! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Emulator problem

2008-06-26 Thread Alfredo Gonzalez
Hi I have tried to create my first hello world with Android but when it initiates the emulator comes a text that said Android and then a red light from one side to another and not run my application that may be? Thanks --~--~-~--~~~---~--~~ You received this

[android-developers] Re: Wifi SDK Available ?

2008-06-26 Thread Dima
Hi Digit, is it known which WiFi/BT chips are going to be compatible with Android SW? Regards Dima On Jun 25, 2:30 pm, Digit [EMAIL PROTECTED] wrote: WiFi and Bluetooth emulation are not planned for the immediate future (i.e. won't happen before 2009) emulation at the low-level protocol

[android-developers] Re: Hello world problems

2008-06-26 Thread Fräntz Miccoli
First you should post into the android beginners group, you are in the developpers one. Then have you parameters your plugin by registering the sdk files in Eclipse/Window/preferences/android. Bye On Thu, Jun 26, 2008 at 6:40 AM, amitshetty [EMAIL PROTECTED] wrote: I am embarrassed to be

[android-developers] Re: Question about LayoutAnimation2.java from the ApiDemos sample project

2008-06-26 Thread Romain Guy
Hi, - Why does one need these two animations added to the set You don't need the two animations. The effect I wrote in this sample just happen to do a translate + alpha because it looks better. - Why does the ListView rendering stall the way it does It doesn't for me. Might be a bug in M5

[android-developers] Re: Wifi SDK Available ?

2008-06-26 Thread Digit
as far as I know, any chip supported by the Linux kernel and the bluez stack. I really can't tell more than that On Thu, Jun 26, 2008 at 6:17 PM, Dima [EMAIL PROTECTED] wrote: Hi Digit, is it known which WiFi/BT chips are going to be compatible with Android SW? Regards Dima On Jun 25,

[android-developers] Difference between EXTERNAL_CONTENT_URI and INTERNAL_CONTENT_URI?

2008-06-26 Thread kingkung
Trying to store an image to the Image content provider. Which of the above should I use to insert an image? Also, I heard people had problems with the image content provider... is it (still) broken/non- functional? ContentValues imageValues = new ContentValues();

[android-developers] help on Android

2008-06-26 Thread Billsen
Hi, I am a new comer to Android and need a help. Here is my question? How to get to a new activity by clicking a button. What is what I did. In class CompantMenu, I have code like this . . listButton.setOnClickListener(new View.OnClickListener() { public void

[android-developers] Troid New Sight for Android

2008-06-26 Thread Android_Troid
i was thinking for mutli - versions of GMobile and Android system, so i started thinking with a millitary version, we can develop set of applications that can be used for military purposes, i have lot of idea to develop and produce such type of applications and i can share it with all Android