[android-developers] Re: How to use Java Runtime class in Android for starting another application from mine

2010-03-15 Thread Bob Kerns
Why don't you use the debugger to answer this question? Set exception breakpoints on Exception and Error, and see where it stops, and why? You can also get this from the log, but doing it from the debugger lets you explore and gather more information. On Mar 15, 12:15 am, Sudheendra wrote: > Hi

[android-developers] Re: How to use Java Runtime class in Android for starting another application from mine

2010-03-15 Thread Sudheendra
Also console in Eclipse is giving me this info [2010-03-15 12:32:00 - Exoda] -- [2010-03-15 12:32:00 - Exoda] Android Launch! [2010-03-15 12:32:00 - Exoda] adb is running normally. [2010-03-15 12:32:01 - Exoda] Performing com.intent.launcher.launcher activity launch [20

[android-developers] Re: How to use Java Runtime class in Android for starting another application from mine

2010-03-15 Thread Sudheendra
Hi i have gone through the Resource and wrote a code for launching Notepad through a launcher program . (Downloaded the Notepad code from google ) But i am getting and Error saying "Process com.intent.launcher has stopped unexpectedly ". My code goes like this Launcher.Java package com.intent.la

Re: [android-developers] Re: How to use Java Runtime class in Android for starting another application from mine

2010-03-14 Thread TreKing
On Sun, Mar 14, 2010 at 2:11 AM, Sudheendra wrote: > Can u please guide me for a resource which talks about generic intents > and how to use them. > How about the official documentation? Just a thought. http://developer.android.com/intl/de/reference/android/content/Intent.html --

[android-developers] Re: How to use Java Runtime class in Android for starting another application from mine

2010-03-14 Thread Sudheendra
Can u please guide me for a resource which talks about generic intents and how to use them. Thanks. On Mar 13, 11:33 am, TreKing wrote: > On Fri, Mar 12, 2010 at 2:44 AM, Sudheendra wrote: > > > basically i want to start Notepad application in android from my > > application , > > Like Farproc s

[android-developers] Re: How to use Java Runtime class in Android for starting another application from mine

2010-03-12 Thread Farproc
If the notepad is an Android app, you should use Activity.startActivity(). On Mar 12, 4:44 pm, Sudheendra wrote: > basically i want to start Notepad application in android from my > application , can i do this in android using runtime.exec() method of > RuntimeClasss and assign it to a process an