[android-beginners] GoogleApps.apk

2008-09-10 Thread Song
Is there anyone know the contents of /system/bin/GoogleApps.apk? It can not be executed. 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: Syntax error: ) unexpected I uses

[android-beginners] Image Button

2008-09-10 Thread deepa . bedsur
Hi, How to position the image buttons? I want to place 4 image buttons with the text in one screen.Plz somebody help me --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this

[android-beginners] android

2008-09-10 Thread kuna
Hi all, I'm running 0.9 in Eclipse 3.3/ADT. I have a very stripped down one-class app (converted from m5) which ought to be presenting a map (that works ok) and then drawing an overlay (it doesn't). In onCreate(), a simple overlay (TOverlay) is created and added to _mapView.getOverlays().

[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 To

[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: 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 takes

[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

[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

[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 down

[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

[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

[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] 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.

[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

[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

[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 from

[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.

[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/ But

[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 applications

[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