[android-beginners] Re: Android Source Code

2008-09-10 Thread DavidN
What has been released so far is here http://code.google.com/p/android/downloads/list But that doesn't include middle ware libs, if thats the libs you wanted. On Sep 10, 2:43 pm, "Chihau Chau" <[EMAIL PROTECTED]> wrote: > Hi everybody, I have a doubt > ¿Where I can find the Android source code

[android-beginners] Re: Programming Android with Scala?

2008-09-10 Thread sync qa2
On Sep 10, 2008 12:13 PM, "circ ular" <[EMAIL PROTECTED]> wrote: is it possible to use Scala to program for Android? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this grou

[android-beginners] Recording voice?

2008-09-10 Thread WK2
Hi, Is there any way to record voice on Android? Thanks. --~--~-~--~~~---~--~~ 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@googlegroups.com To unsubscr

[android-beginners] Re: Porting J2ME applications

2008-09-10 Thread ????
Hi Dana, Can we use it without any lisence free? or need some lisence with SUN or anyone? Regards, Katsumi Dana Li wrote: > Hi Kartik, > > It's a great question. We have developed an application to allow you run > J2ME applications on Android without code change. > > Please download the new v

[android-beginners] Re: Android Source Code

2008-09-10 Thread jtaylor
The source code should arrive sometime in the 4th Quarter of this year. "Q4 2008 - Source code released" Android Developer Roadmap http://code.google.com/android/roadmap.html - Juan T. On Sep 10, 5:43 pm, "Chihau Chau" <[EMAIL PROTECTED]> wrote: > Hi everybody, I have a doubt > ¿Where I can

[android-beginners] Android Source Code

2008-09-10 Thread Chihau Chau
Hi everybody, I have a doubt ¿Where I can find the Android source code with the Linux kernel and Libraries sources? -- Chihau Chau --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post

[android-beginners] Re: org.apache.http tutorial?

2008-09-10 Thread jtaylor
Why would I use the Apache Library in Android over HttpURLConnection? Why does Photostream use it for the Flickr images? - Juan T. On Sep 10, 3:41 pm, "Mark Murphy" <[EMAIL PROTECTED]> wrote: > > "the HttpComponents may be of interest to anyone building HTTP-aware > > client and server applicat

[android-beginners] Re: org.apache.http tutorial?

2008-09-10 Thread Mark Murphy
> "the HttpComponents may be of interest to anyone building HTTP-aware > client and server applications such as web browsers, web spiders, HTTP > proxies, web service transport libraries, or systems that leverage or > extend the HTTP protocol for distributed communication." > http://hc.apache.org/

[android-beginners] Re: org.apache.http tutorial?

2008-09-10 Thread jtaylor
Thanks. It says here. "the HttpComponents may be of interest to anyone building HTTP-aware client and server applications such as web browsers, web spiders, HTTP proxies, web service transport libraries, or systems that leverage or extend the HTTP protocol for distributed communication." http://h

[android-beginners] Programming Android with Scala?

2008-09-10 Thread circ ular
is it possible to use Scala to program for Android? --~--~-~--~~~---~--~~ 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@googlegroups.com To unsubscribe fro

[android-beginners] Re: org.apache.http tutorial?

2008-09-10 Thread Mark Murphy
> Is there anything easier? Or is there any preliminary study I can do > to help with the tutorial. You probably already saw these, but there's a bunch of examples here: http://hc.apache.org/httpcomponents-client/examples.html -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Code

[android-beginners] Re: Example of Scroll bar

2008-09-10 Thread Mark Murphy
> I need an example of scroll bar by coding instead of xml. new ScrollView(this); Add your to-be-scrolled layout as a child of the ScrollView. -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to Android Development_ Version 1.2 Published! --~--~-~--~-

[android-beginners] org.apache.http tutorial?

2008-09-10 Thread jtaylor
I was just looking at the new Photostream App. I see Flickr.java has all kinds of things from org.apache.http. I've searched for tutorials on how to use this and the only thing I found was an official tutorial. http://wiki.apache.org/HttpComponents/GuidedTourOfHttpCore Is there anything easier?

[android-beginners] Re: Porting J2ME applications

2008-09-10 Thread Kartik Bansal
Hey Dana, Thnx a lot.. wil try it n get back to u if i m stuck somewhere.. Reards, Kartik Bansal On Wed, Sep 10, 2008 at 7:54 PM, Dana Li <[EMAIL PROTECTED]> wrote: > Hi Kartik, > > It's a great question. We have developed an application to allow you run > J2ME applications on Android without co

[android-beginners] jchat4android 1.1 released

2008-09-10 Thread marco ughetti
Dear Android developers, We are proud to announce the release of jChat4Android 1.1 working with *ANDROID SDK 0.9beta* jChat4Android is a chat application for the Android platform based on Jade agent framework. It shows how Jade can effectively be used in a peer-to-peer context on mobile dev

[android-beginners] JADE-ANDROID Rel 1.1 released for ANDROID SDK 0.9 beta

2008-09-10 Thread marco ughetti
Dear ANDROID users, We are pleased to announce the release of version 1.1 of JADE4ANDROID add on (prevously JADE-ANDROID) working on ANDROID SDK 0.9 beta,a software package that allows developing agent oriented applications based on JADE ( http://jade.tilab.com) for the ANDROID platform. An

[android-beginners] Re: Files reading

2008-09-10 Thread Payal Amin
you can try this FileContains = new File(PathName); File[] Filenames = FileContains.listFiles( new FilenameFilter() { public boolean accept(File FileContains, String name) { return name.endsWith(".mp3") || name.endsWith(".MP3"); } }); Payal

[android-beginners] Re: Porting J2ME applications

2008-09-10 Thread Dana Li
Hi Kartik, It's a great question. We have developed an application to allow you run J2ME applications on Android without code change. Please download the new version of Android J2ME MIDP RUNNER based on the new Android SDK 0.9. http://www.netmite.com/android Please let me know if you have more

[android-beginners] Removal of javax.microedition.lcdui.Graphics

2008-09-10 Thread Sudha
I was using M5 .Now I switched my application to SDK 0.9. I am getting the error on eclipse that the import javax.microedition.lcdui.Graphics cannot be resolved. In my program I am using the Graphics.TOP|Grpahics.LEFT. Can any one help me to find whether that option is removed , why and anywhere

[android-beginners] Example of Scroll bar

2008-09-10 Thread Nemat
Hi frnds. I need an example of scroll bar by coding instead of xml. So plz give me any link of tutorial for that. Thnx in advance --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To

[android-beginners] Re: Map overlay not drawing in beta 0.9. Why?

2008-09-10 Thread [EMAIL PROTECTED]
Argh. It was due to not syncing the change in parameters for Overlay.draw between the method defn and the super call. Works fine when you get that right. On Sep 9, 11:41 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm running 0.9 in Eclipse 3.3/ADT. > I have a very stripped

[android-beginners] Re: Files reading

2008-09-10 Thread Mark Murphy
patelpower wrote: > thanks, but i am trying that java.io.file but its giving whatever > files in the SDcard whether it could be .txt etc. but i need only mp3 > files list so if u have any idea than let ne know.. In my previous response, I wrote: "Look in the java.io package. You probably want F

[android-beginners] Re: Files reading

2008-09-10 Thread patelpower
Hi mark, thanks, but i am trying that java.io.file but its giving whatever files in the SDcard whether it could be .txt etc. but i need only mp3 files list so if u have any idea than let ne know.. my code is loke this private File FileContains; FileContains = new File(PathName

[android-beginners] Re: Files reading

2008-09-10 Thread Mark Murphy
patelpower wrote: > Hello everyone, > > i want to read the mp3 files only from the sdcard so is there any API > so it could read only mp3 files and give the list of the files indise > the SDcard Look in the java.io package. You probably want File#listFiles(), perhaps one of the flavors that ta

[android-beginners] Files reading

2008-09-10 Thread patelpower
Hello everyone, i want to read the mp3 files only from the sdcard so is there any API so it could read only mp3 files and give the list of the files indise the SDcard Regards Rakesh --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-beginners] Re: Image Button

2008-09-10 Thread Mark Murphy
[EMAIL PROTECTED] wrote: > How to position the image buttons? I want to place 4 image buttons > with the text in one screen.Plz somebody help me You will probably want to use a layout, such as LinearLayout, RelativeLayout, or TableLayout. -- Mark Murphy (a Commons Guy) http://commonsware.com _

[android-beginners] Re: GoogleApps.apk

2008-09-10 Thread Mark Murphy
Song wrote: > Is there anyone know the contents of /system/bin/GoogleApps.apk? It can > not be executed. You sound surprised. > Once I copy it to /data/app and execute it, the error > information displays: > > ./GoogleApps.apk > P跇 9?詡= : not found > = : not found > ./GoogleApps.apk: 5: Synta

[android-beginners] Porting J2ME applications

2008-09-10 Thread Kartik Bansal
i have some applications built on j2me. how do i port it to android. --~--~-~--~~~---~--~~ 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@googlegroups.com T