[android-beginners] how to add data from textbox to database?

2008-10-01 Thread dilu

Hi everyone,
i am completely new to dis field.can anyone can give me some idea that
how to add data from textbox to database?
--~--~-~--~~~---~--~~
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 this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: : Help Needed

2008-10-01 Thread Dhaval Dave

Hi All,

I am new in era of android.
I am intrested in such kind of application.

I have seen one application on symbian phone like tracer.
It gives us the all the information about the operator circle and
different location ID.

If we want to trace any phone then we should make a application which
annonymously(or it must be installed on both phone) install on
someone's phone and send application info via call like in DTMF form.
Then track those DTMF info and by analyizing those info, we can find
the exact location.

Am I right??
Is this possible?

I am with u guyz...
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 unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Install Google Android SDK on Ubuntu

2008-10-01 Thread The Motivating Factor

I am very new to Ubuntu - I moved over from vista not more than 2weeks
ago. I am interested in installing the SDK for the Google Android,
however I can't figure out how. Can someone please help me?

Found on Googles Web Site (a href=http://code.google.com/android/
intro/installing.html Installing The SDK,The instructions say:/a

 # On Linux, edit your ~/.bash_profile or ~/.bashrc file. Look for a
line that sets the PATH environment variable and add the full path to
the tools/ directory to it. If you don't see a line setting the path,
you can add one:

export PATH=${PATH}:your_sdk_dir/tools

I have no idea how to do the above, please help

--~--~-~--~~~---~--~~
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 this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: With no previous programming knowledge / experience, how do I get started creating an app?

2008-10-01 Thread David Farler
The Eclipse plugin can be bypassed, if you really wanted to. But I wouldn't
recommend it. As an IDE (Integrated Development Environment), Eclipse
manages your projects for you in many ways. To forgo it would mean using the
command line for everything.The SDK is completely independent of the Plugin.
Make no mistake, you are actually typing Java in there. It is being compiled
as Java with the installed Java JDK. The SDK tools then convert it to
Dalvik. The plugin makes it pretty and easy for you. See the tools folder
in the android sdk folder -- this is all being accessed by Eclipse through
the Android Development Tools (ADT) Plugin.

Actually, when you become more experienced, you may short-cut right to the
command line for things like debugging. But, I find the Eclipse debugger to
be quite nice.

Finally, I quote Google on Installing the SDK:
If you will be using the Eclipse IDE as your environment for developing
Android applications, you can install a custom plugin called Android
Development Tools (ADT), which adds integrated support for Android projects
and tools. The ADT plugin includes a variety of powerful extensions that
make creating, running, and debugging Android applications faster and
easier.
(http://code.google.com/android/intro/installing.html)http://code.google.com/android/intro/installing.html


David





On Wed, Oct 1, 2008 at 12:24 AM, Morisato13 [EMAIL PROTECTED] wrote:


 I'm sorry, but what exactly does the eclipse plugin do? There's a
 tidbit about it in the FAQs stating that it makes creating apps for
 Android easier, but what does it actually do that makes it easier? Is
 it the conversion tool that converts Java to Dalvik? Is it a GUI that
 does coding in Java without actually typing out Java code (kind of
 like VB where you have windows and such and you move them around and
 set value having it do the real coding behind the scenes)? Or is it
 something completely different?

 On Sep 30, 9:38 am, David Farler [EMAIL PROTECTED] wrote:
  You are correct. First, your files are compiled as true java class files.
  The Java bytecode gets converted to the dex format by the dx utility.
 So,
  while it's not technically Java at the end, all of the rules of
  programming java should apply. This is why using Eclipse is such a huge
  plus. It's Java language integration is very good.
  If you want to get on a Java forum, you can try Sun's Java forum:
 
  Java Beginners:http://forums.sun.com/forum.jspa?forumID=54
 
  Java Programming in General:http://forums.sun.com/forum.jspa?forumID=31
 
  Cheers,
  David
 
  On Tue, Sep 30, 2008 at 3:50 AM, Morisato13 [EMAIL PROTECTED]
 wrote:
 
   Thanks. I'm reading #4 right now.
 
   Now I was watching the featured video on the andriod home page with
   Jason Chen, and one of the questions in the QA section of the video
   made Jason clarify that Android is not Java, applications are written
   in Java programming language, but Android is Dalvic bicode... now,
   with that said, is there anything that I would learn while learning
   Java that does not or can not be applied to programming applications
   for Android? I'm guessing no because from my guess, what happens is
   you code in Java and it gets baked into whatever Dalvic bicode is for
   android to recognize it... but I just want someone who knows to
   answer.
 
   Also, are there any forums that specifically help noobs with noob java/
   programming questions? I'd ask them here but it seems this forum is
   really for Android related questions.
 
   On Sep 29, 3:52 am, David Farler [EMAIL PROTECTED] wrote:
Hi Morisato,
Since you'll be programming in Java for Android, I recommend you
 start
practicing with it. Java is a good place to start in many cases.
 Check
   out
the following books from your library or college library:
 
1. Absolute Java by Walter Savitch (3rd edition)
2. Java Foundations: Introduction to Program Design and Data
 Structures
   by
John Lewis
3. Also check out this free online course offered by MIT (you don't
 have
   to
register):
Introduction to Computer Science and Programming
  http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science.
 ..
4. A free online book: Thinking in Java by Bruce Eckel:
  http://www.mindview.net/Books/TIJ/
5. And don't forget the official Java API:
  http://java.sun.com/javase/6/docs/api/
 
All of these resources should get you started. Remember that
 programming
   is
more than just memorization. Try to use first principles by
 understanding
how a computer (or virtual machine in this case) is doing its job.
 Once
   you
understand the core of it, you can program in any language.
 
All of the suggestions above assume no previous knowledge (except
 number
   5,
but take a look at it anyway). Don't get discouraged. Programming can
 be
hard, but remember that sometimes people make it hard because they
 don't
remember what it's like to be a beginner. You should 

[android-beginners] Re: Install Google Android SDK on Ubuntu

2008-10-01 Thread Horacio Sanson

In your home directory there should be a file called .bashrc (the dot
is important!!) simply open that file with any text editor (kate or
gedit) and add the line
export PATH=${PATH}:your_sdk_dir/tools to it.

Replace your_sdk_dir to the place you copied the Android SDK file
everything else shall be copied exactly as it is starting from
export all the way to tools

regards,
Horacio


On Wed, Oct 1, 2008 at 12:58 PM, The Motivating Factor
[EMAIL PROTECTED] wrote:

 I am very new to Ubuntu - I moved over from vista not more than 2weeks
 ago. I am interested in installing the SDK for the Google Android,
 however I can't figure out how. Can someone please help me?

 Found on Googles Web Site (a href=http://code.google.com/android/
 intro/installing.html Installing The SDK,The instructions say:/a

  # On Linux, edit your ~/.bash_profile or ~/.bashrc file. Look for a
 line that sets the PATH environment variable and add the full path to
 the tools/ directory to it. If you don't see a line setting the path,
 you can add one:

 export PATH=${PATH}:your_sdk_dir/tools

 I have no idea how to do the above, please help

 


--~--~-~--~~~---~--~~
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 this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Install Google Android SDK on Ubuntu

2008-10-01 Thread luyen

Please read this articles: Installing Google Android SDK 1.0 On Ubuntu
8.04 Desktop:

http://whyandroid.com/android/217-installing-google-android-sdk-10-on-ubuntu-804-desktop.html



On Oct 1, 5:58 am, The Motivating Factor [EMAIL PROTECTED] wrote:
 I am very new to Ubuntu - I moved over from vista not more than 2weeks
 ago. I am interested in installing the SDK for the Google Android,
 however I can't figure out how. Can someone please help me?

 Found on Googles Web Site (a href=http://code.google.com/android/
 intro/installing.html Installing The SDK,The instructions say:/a

  # On Linux, edit your ~/.bash_profile or ~/.bashrc file. Look for a
 line that sets the PATH environment variable and add the full path to
 the tools/ directory to it. If you don't see a line setting the path,
 you can add one:

 export PATH=${PATH}:your_sdk_dir/tools

 I have no idea how to do the above, please help
--~--~-~--~~~---~--~~
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 this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: ADC 2

2008-10-01 Thread kesh

Hello,
 Is there any official site where tru info about android
developer challenge 2 can be obtained?

 Any ideas on wat can be developed using android platform or pointers
to such ideas are welcome

Thanks in advance
kesh14may

On Sep 28, 7:25 pm, Mark Murphy [EMAIL PROTECTED] wrote:
       Can anyone provide concrete info about the Android developer
  Challenge 2 -

 Nothing has been announced yet, though an announcement is supposed to come
 sometime before the end of the year.

 --
 Mark Murphy (a Commons Guy)http://commonsware.com
 _The Busy Coder's Guide to Android Development_ Version 1.2 Published!
--~--~-~--~~~---~--~~
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 this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Can't Download SDK?!

2008-10-01 Thread Rammstein

You're right, the same happened when I tried to download Google
Chrome, but they could've simply stated that instead of showing some
server failure.

On Sep 28, 11:45 am, Hussein [EMAIL PROTECTED] wrote:
 I think this happens usually when you are not allowed to download
 software from Google if your country is under US sanctions.

 On Sep 28, 12:21 am, Rammstein [EMAIL PROTECTED] wrote:

  Hey
  I can't download the SDK from the following URI 
  :http://dl.google.com/android/android-sdk-windows-1.0_r1.zip
  I get this message:
  404 Not Found
  The requested URL /android/android-sdk-windows-1.0_r1.zip was not
  found on this server
  any mirrors?
--~--~-~--~~~---~--~~
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 this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: EditText Right Align

2008-10-01 Thread Romain Guy

android:gravity=right

On Wed, Oct 1, 2008 at 12:03 PM, Zachary Becker [EMAIL PROTECTED] wrote:
 I couldn't find the xml attribute to align a EditText box to the right side.
 I am using it for numbers so I would prefer it be aligned right.

 Is there a way to do this, through xml or a function call?

 Thanks,

 Zach

 




-- 
Romain Guy
www.curious-creature.org

--~--~-~--~~~---~--~~
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 this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Google Map Directions - Do they exist within Android?

2008-10-01 Thread mscwd01

Hey,

I am wanting to use the directions functionality present within the
web based google map api within an Android project. Firstly I am just
checking if the Android SDK allows for use of directions? I had a
quick look through the documentation but I couldnt find it mentioned
anywhere.

I do hope they havent left it out as its one of the most useful
features. Can it be used?

If not is there a workaround which could be used I.e. calling the web
based maps api somehow to get directions?

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 unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Install Google Android SDK on Ubuntu

2008-10-01 Thread Richard Brunelle
You can use your favorite text editor to edit these text files.  Personally,
I use vi.  In order to figure out how to use vi (if you would like to use
this editor), from your command line you could enter:
# man vi
This command will give you the 'man' page for the vi application (manual
page).

Execute the following command from your command line:

# vi ~/.bash_profile
This will open up a vi session with the .bash_profile file opened up for
modification.
The ~ in the above command is just a shorthand way of specifying your user
account's home directory.

Once inside vi, make the change described, and save the file.  Without
having to logout and log back in (when you login and the bash shell is
started, the ~/.bash_profile file is read), execute the following from the
command line:

# source ~/.bash_profile

Voila!  You should be good to venture further down the path now

Welcome to the dark side =)

~



On Tue, Sep 30, 2008 at 11:58 PM, The Motivating Factor [EMAIL PROTECTED]
 wrote:


 I am very new to Ubuntu - I moved over from vista not more than 2weeks
 ago. I am interested in installing the SDK for the Google Android,
 however I can't figure out how. Can someone please help me?

 Found on Googles Web Site (a href=http://code.google.com/android/
 intro/installing.htmlhttp://code.google.com/android/intro/installing.html
 Installing The SDK,The instructions say:/a

  # On Linux, edit your ~/.bash_profile or ~/.bashrc file. Look for a
 line that sets the PATH environment variable and add the full path to
 the tools/ directory to it. If you don't see a line setting the path,
 you can add one:

 export PATH=${PATH}:your_sdk_dir/tools

 I have no idea how to do the above, please help

 


--~--~-~--~~~---~--~~
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 this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: wat is the best way to get started?

2008-10-01 Thread Thomas Lee
Hi dilu,

For your information, try the *Hello, Android* guild provided by Google.
http://code.google.com/android/intro/hello-android.html
As you try, you will be getting more familiar to the development.

Best Regards,
Thomas


On Tue, Sep 30, 2008 at 6:57 PM, dilu [EMAIL PROTECTED] wrote:


 hi
 please help me.
 what is the best way to get started for developing any android
 application.
 i m new to dis field.
 shall i first read java and then move ahead?or wat to do?just advice
 me.

 


--~--~-~--~~~---~--~~
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 this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: If Android does not support flash.....

2008-10-01 Thread Prith Hallikeri

Actually Flash is available on other platforms. FlashLite is Adobe's
offering for mobile devices consisting of a shrunk version of Flash 8
and according to Adobe can display fully functional flash websites
while embedded into a mobile browser.
In fact the latest iteration of this software FlashLite3 is already in
use on some Symbian S60 3rd Edition phones, notably the Nokia N95 8GB
and the Nokia N96.
I use the N95 and have been able to view flash videos on many websites
within the nokia browser, unfortunately youtube isn't available in its
native format as it uses Flash 9 but there is a mobile version of the
site which you are automatically redirected to which offers all the
videos in H.264 format (this means it plays in RealPlayer instead of
in the browser).
I would assume that this is the same source used by the iphone and
probably by android.

On Sep 29, 3:22 pm, Chris Ashton [EMAIL PROTECTED] wrote:
 Has Flash ever been ported to a non-x86 platform?  Even x86-64 has no
 support.  While it would be great for Adobe to provide support, I wouldnt
 think it would come soon.  A better bet might be an open source flash
 replacement - I believe gnash can play many of the movies out there.

--~--~-~--~~~---~--~~
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 this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Latest SDK, Apps will NOT Run - Errors;

2008-10-01 Thread aescobedo

have the same problem,

emulator-5554 disconnected!

i also add eviroment variables



On 17 sep, 23:45, vsk [EMAIL PROTECTED] wrote:
 Hello,

 I am very enthusiastic about Android development. I have properly
 configured the Android dev tools with Eclipse, and made sure my Run
 Configuration is correct.

 However, no matter WHAT I try, I can't get anything to run in the
 emulator.
 I.e, I write code, I click Run, the emulator boots up, and nothing
 happens - at all.

 This is very frustrating... Here are the error messages;
 [2008-09-17 23:58:12 - Gonads] Refreshing resource folders.
 [2008-09-17 23:58:12 - Gonads] Starting full Pre Compiler.
 [2008-09-17 23:58:14 - Gonads] Preparing generated java files for
 update/creation.
 [2008-09-17 23:58:14 - Gonads] C:\android-sdk-windows-0.9_beta\tools
 \aapt.exe package -m -v -J C:\Documents and Settings\Vedant Kumar
 \Desktop\android_DEV\Gonads\src -M C:\Documents and Settings\Vedant
 Kumar\Desktop\android_DEV\Gonads\AndroidManifest.xml -S C:\Documents
 and Settings\Vedant Kumar\Desktop\android_DEV\Gonads\res -I C:\android-
 sdk-windows-0.9_beta\android.jar
 [2008-09-17 23:58:14 - Gonads] Locale/Vendor pairs:
 [2008-09-17 23:58:14 - Gonads]    /
 [2008-09-17 23:58:14 - Gonads]
 [2008-09-17 23:58:14 - Gonads] Files:
 [2008-09-17 23:58:14 - Gonads]   drawable\icon.png
 [2008-09-17 23:58:14 - Gonads]       Src: C:\Documents and Settings
 \Vedant Kumar\Desktop\android_DEV\Gonads\res\drawable\icon.png
 [2008-09-17 23:58:14 - Gonads]   layout\main.xml
 [2008-09-17 23:58:14 - Gonads]       Src: C:\Documents and Settings
 \Vedant Kumar\Desktop\android_DEV\Gonads\res\layout\main.xml
 [2008-09-17 23:58:14 - Gonads]   values\strings.xml
 [2008-09-17 23:58:14 - Gonads]       Src: C:\Documents and Settings
 \Vedant Kumar\Desktop\android_DEV\Gonads\res\values\strings.xml
 [2008-09-17 23:58:14 - Gonads]   AndroidManifest.xml
 [2008-09-17 23:58:14 - Gonads]       Src: C:\Documents and Settings
 \Vedant Kumar\Desktop\android_DEV\Gonads\AndroidManifest.xml
 [2008-09-17 23:58:14 - Gonads] Including resources from package: C:
 \android-sdk-windows-0.9_beta\android.jar
 [2008-09-17 23:58:14 - Gonads]     (processed image C:\Documents and
 Settings\Vedant Kumar\Desktop\android_DEV\Gonads\res\drawable
 \icon.png: 100% size of source)
 [2008-09-17 23:58:14 - Gonads]     (new resource id icon from drawable
 \icon.png #generated)
 [2008-09-17 23:58:14 - Gonads]     (new resource id main from C:
 \Documents and Settings\Vedant Kumar\Desktop\android_DEV\Gonads\res
 \layout\main.xml)
 [2008-09-17 23:58:14 - Gonads]   Writing symbols for class R.
 [2008-09-17 23:58:14 - Gonads] Nothing to pre compile!
 [2008-09-17 23:58:14 - Gonads] Starting full Package build.
 [2008-09-17 23:58:14 - Gonads] C:\android-sdk-windows-0.9_beta\tools
 \aapt.exe package -f -v -M C:\Documents and Settings\Vedant Kumar
 \Desktop\android_DEV\Gonads\AndroidManifest.xml -S C:\Documents and
 Settings\Vedant Kumar\Desktop\android_DEV\Gonads\res -A C:\Documents
 and Settings\Vedant Kumar\Desktop\android_DEV\Gonads\assets -I C:
 \android-sdk-windows-0.9_beta\android.jar -F C:\Documents and Settings
 \Vedant Kumar\Desktop\android_DEV\Gonads\bin\resources.ap_
 [2008-09-17 23:58:15 - Gonads] Found 0 custom asset files in C:
 \Documents and Settings\Vedant Kumar\Desktop\android_DEV\Gonads\assets
 [2008-09-17 23:58:15 - Gonads] Locale/Vendor pairs:
 [2008-09-17 23:58:15 - Gonads]    /
 [2008-09-17 23:58:15 - Gonads]
 [2008-09-17 23:58:15 - Gonads] Files:
 [2008-09-17 23:58:15 - Gonads]   drawable\icon.png
 [2008-09-17 23:58:15 - Gonads]       Src: C:\Documents and Settings
 \Vedant Kumar\Desktop\android_DEV\Gonads\res\drawable\icon.png
 [2008-09-17 23:58:15 - Gonads]   layout\main.xml
 [2008-09-17 23:58:15 - Gonads]       Src: C:\Documents and Settings
 \Vedant Kumar\Desktop\android_DEV\Gonads\res\layout\main.xml
 [2008-09-17 23:58:15 - Gonads]   values\strings.xml
 [2008-09-17 23:58:15 - Gonads]       Src: C:\Documents and Settings
 \Vedant Kumar\Desktop\android_DEV\Gonads\res\values\strings.xml
 [2008-09-17 23:58:15 - Gonads]   AndroidManifest.xml
 [2008-09-17 23:58:15 - Gonads]       Src: C:\Documents and Settings
 \Vedant Kumar\Desktop\android_DEV\Gonads\AndroidManifest.xml
 [2008-09-17 23:58:15 - Gonads] Including resources from package: C:
 \android-sdk-windows-0.9_beta\android.jar
 [2008-09-17 23:58:15 - Gonads]     (processed image C:\Documents and
 Settings\Vedant Kumar\Desktop\android_DEV\Gonads\res\drawable
 \icon.png: 100% size of source)
 [2008-09-17 23:58:15 - Gonads]     (new resource id icon from drawable
 \icon.png #generated)
 [2008-09-17 23:58:15 - Gonads]     (new resource id main from C:
 \Documents and Settings\Vedant Kumar\Desktop\android_DEV\Gonads\res
 \layout\main.xml)
 [2008-09-17 23:58:15 - Gonads] Creating 'C:\Documents and Settings
 \Vedant Kumar\Desktop\android_DEV\Gonads\bin\resources.ap_'
 [2008-09-17 23:58:15 - Gonads] Writing all files...
 [2008-09-17 23:58:15 - Gonads]       

[android-beginners] Re: Using google Maps

2008-10-01 Thread Friso Kluit
What is the reason for removing the driving / walking directions from the 1.0 
SDK? Is there an alternative we can use?

From: android-beginners@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
Megha Joshi
Sent: Saturday, 13 September, 2008 7:38 AM
To: android-beginners@googlegroups.com
Subject: [android-beginners] Re: Using google Maps

You can use MapView APIs for android:
http://code.google.com/android/reference/com/google/android/maps/MapView.html

Check out MapView sample code at ApiDemps/Views/MapViewDemo.
Unfortunately, the directions API  is not included for 1.0 release.
2008/9/12 Hans [EMAIL PROTECTED]mailto:[EMAIL PROTECTED]

Anyone has some sample code which i can look at for me to start off
interfacing with Maps. In my app i will need to get from place A to B
showing me with the use of an arrow the direction i should take. (i.e
similar to a GPS system). I am very new to android :(.
Thanks to all that can help me.






Republic Polytechnic, 9 Woodlands Avenue 9, Singapore 738964 (Near Woodlands 
MRT/Interchange).
www.rp.sg . Fax: +65 6415-1310 .

Republic Polytechnic, the first Institute of Higher Learning to fully adopt the 
Problem-Based Learning approach in Singapore, continues to strive towards best 
practices and maintain excellence in service standards with the following 
certifications: Singapore Innovation Class (SIC), Singapore Quality Class 
(SQC), People Developer Standards and QEHS (ISO 9001, 14001 and OHSAS 18001)

CONFIDENTIALITY CAUTION: This message is intended only for the use of the 
individual or entity to whom it is addressed and contains information that is 
privileged and confidential. If you, the reader of this message, are not the 
intended recipient, you should not disseminate, distribute or copy this 
communication. If you have received this communication in error, please notify 
us immediately by return email and delete the original message. Thank you.

--~--~-~--~~~---~--~~
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 this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---