[android-beginners] Article about Android

2008-04-21 Thread psmor
Hello everybody! I have to write a Scientific/Technical article for a class and I thought about Android. The problem is that I've been struggling with gathering ideas for a theme because I don't want it to be a tutorial. Got any ideas? I know that this is a little bit off subject, but this is a

[android-beginners] About camera in android

2008-04-21 Thread Analdin Judy
Hi Can anybody please give me a good sample application using camera Thanks judy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to android-beginners@

[android-beginners] About error:Argument must not be null

2008-04-21 Thread Analdin Judy
Hi When i click the playvideo button.I got "Argument must not be null" Error,Heres my code * package* com.IW.*VedioPlayer*; *im**port* android.app.Activity; * import* android.graphics.PixelFormat; * import* android.media.MediaPlayer; * import* android.media.MediaPlayer.OnBufferingUpdateLis

[android-beginners] java-bindings for custom c-library on android?

2008-04-21 Thread [EMAIL PROTECTED]
Hello, I am currently planning on developing an application for android. It happens that the server i want to exchange information with has a java client library. Sadly those are only java-bindings of the C++-library. Is there any chance i can use them on android? Like installing that library on

[android-beginners] Re: Article about Android

2008-04-21 Thread [EMAIL PROTECTED]
Compare the freeze process where lower priority programs go into a state of suspended animation with internet quality of service models (QOS). On Apr 21, 3:13 am, psmor <[EMAIL PROTECTED]> wrote: > Hello everybody! > > I have to write a Scientific/Technical article for a class and I > thought abo

[android-beginners] Re: Java and mobile phones

2008-04-21 Thread [EMAIL PROTECTED]
Android is no language. Your applications are written in Java. Sony Ericsson is no platform. Symbian-applications (assuming you mean Symbian-based Sony Ericsson phones) are typically written in C (or python). Symbian does support Java (do not know whether J2ME or the full stack). But: most probabl

[android-beginners] RemoteService not Found

2008-04-21 Thread WildLuka
hi, I've trying to run the RemoteService example in the ApiDemo but I'm getting this error: WARN/ActivityManager(631): Unable to start service Intent { action=test.remote.IRemoteService }: not found and WARN/ActivityManager(631): Unable to start service Intent { action=test.remote.ISecondary }:

[android-beginners] Re: Two types of intent

2008-04-21 Thread wolf
I can't open the URI you pasted. I am lookig for this type of article. The android sdk document just details the intent related concepts and terms. It just tell me "what", not tell me "how". Would you please open it and then save it to mht file and send it to me by e-mail? My e-mail address is

[android-beginners] Re: Two types of intent

2008-04-21 Thread wolf
I can't open the URI you pasted. I am lookig for this type of article. The android sdk document just details the intent related concepts and terms. It just tell me "what", not tell me "how". Would you please open it and then save it to mht file and send it to me by e-mail? My e-mail address is

[android-beginners] Re: RemoteService not Found

2008-04-21 Thread Dan U.
I would guess you don't have IRemoteService or ISecondary defined as a service in your androidmanifest.xml On Apr 21, 7:46 am, WildLuka <[EMAIL PROTECTED]> wrote: > hi, > I've trying to run the RemoteService example in the ApiDemo but I'm > getting this error: > > WARN/ActivityManager(631): Unabl

[android-beginners] Re: RemoteService not Found

2008-04-21 Thread WildLuka
but the only service to declare would RemoteService, the class that extends Service. Those two are just interfaces. i didn't think I had to declare them as services in the android manifest. On Apr 21, 5:35 pm, "Dan U." <[EMAIL PROTECTED]> wrote: > I would guess you don't have IRemoteService or

[android-beginners] Re: RemoteService not Found

2008-04-21 Thread Dan U.
I guess I don't quite understand. How exactly are you trying to "start" an interface? On Apr 21, 9:41 am, WildLuka <[EMAIL PROTECTED]> wrote: > but the only service to declare would RemoteService, the class that > extends Service. Those two are just interfaces. i didn't think I had > to declare

[android-beginners] question about adding external source folders to your project

2008-04-21 Thread scimitar
Hi, My app needs to communicate with a webservice, so I was reading through the tutorial posted at http://www.anddev.org/viewtopic.php?p=4924 I've downloaded the kXML-RPC sources. The tutorial says to 'add the packages to your project'. How do I do this in Eclipse? thanks, --~--~-~--~--

[android-beginners] Re: RemoteService not Found

2008-04-21 Thread WildLuka
Well, what I did was read the AIDL tutorial and run the RemoteService and RemoteServiceBinding examples. The way I undestood it was that interfaces are interfaces to a service, and that's the thing you declare in the AndroidManifest.xml. you bind to the service and through the ServerConnection c

[android-beginners] Re: RemoteService not Found

2008-04-21 Thread Dan U.
I haven't worked with aidl, but just looking at the docs gives me a good idea. Yes, you would have an interface to the service, but the service itself is what gets defined in the manifest. On Apr 21, 1:51 pm, WildLuka <[EMAIL PROTECTED]> wrote: > Well, what I did was read the AIDL tutorial and ru

[android-beginners] Re: question about adding external source folders to your project

2008-04-21 Thread Megha Joshi
Hi, You may want to look at the instructions from Xavier, given in the thread below: http://groups.google.com/group/android-beginners/msg/ee57ef8cec26f9f0 Thanks, Megha On Mon, Apr 21, 2008 at 1:17 PM, scimitar <[EMAIL PROTECTED]> wrote: > > Hi, > > My app needs to communicate with a webservice

[android-beginners] Re: About camera in android

2008-04-21 Thread Megha Joshi
Hi Judy, You can see the MediaRecorder sample posted to the android-developers group. It uses Camera as a VideoSource. Thanks, Megha On Mon, Apr 21, 2008 at 3:23 AM, Analdin Judy <[EMAIL PROTECTED]> wrote: > Hi > > >Can anybody please give me a good sample application using camera > > > Tha

[android-beginners] Re: About error:Argument must not be null

2008-04-21 Thread Megha Joshi
Hi Judy, You need to install an sdcard and upload test mp4 files to it, next change the code to use those test files, and then run the sample code. Thanks, Megha On Mon, Apr 21, 2008 at 2:47 AM, Analdin Judy <[EMAIL PROTECTED]> wrote: > Hi > > > When i click the playvideo button.I got "Argument

[android-beginners] Re: Two types of intent

2008-04-21 Thread stefoid
Works for me. But anyway, if you Google "Diego Torres android intent" you will find it. On Apr 22, 1:01 am, wolf <[EMAIL PROTECTED]> wrote: > I can't open the URI you pasted. > > I am lookig for this type of article. The android sdk document just > details the intent related concepts and terms.