[android-beginners] Re: Help Needed : MediaRecorder error: java.io.IOException: prepare failed

2009-10-12 Thread Mikhail G
Hi, i'm seeing same issue. were you able to find a solution? thx, Mikhail. On Sep 8, 3:49 am, preetam_pict preetam.pa...@gmail.com wrote: Hi all I am trying to write a sample program to record the video (say camcorder application). When i run my program using the emulator (I have

[android-beginners] Re: Help Needed : MediaRecorder error: java.io.IOException: prepare failed

2009-09-08 Thread preetam_pict
Hi all ... I am seeing following errors in log ... Can someone please help me out to resolve this ... ! 09-08 12:30:26.174: ERROR/MediaPlayer(554): Unable to to create media player 09-08 12:30:26.183: ERROR/CameraService(554): Failed to load CameraService sounds. 09-08 12:30:26.203:

[android-beginners] Re: help needed creating a AVD

2009-08-18 Thread Jens Vegeby
You need to include the java bin directory in your system path, contrpl panel, system, advanced system settings, some tab, environment variables. Regards Jens On 8 18, 2009 4:16 AM, Roman ( T-Mobile USA) roman.baumgaert...@t-mobile.com wrote: Try to do a java -version to see whether you have

[android-beginners] Re: Help Needed with Opening File

2009-08-08 Thread Steve Hall
I eventually solved the problem with help of following dicussion http://www.anddev.org/viewtopic.php?p=25297#25297 my solution is:- public void CopyfiletoMemory(String filename){ FileOutputStream fos; DataOutputStream out; try{ FileInputStream in = new

[android-beginners] Re: Help needed in error!!

2009-07-02 Thread Mark Murphy
randheersingh wrote: Hi, I am just trying to run the relative example given in the sample code of Google documentation of android. Its just ran. But when I added the background property of relative layout an error is coming. I am giving the code of XML file here and the error. Please tell me

[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

[android-beginners] Re: : Help Needed

2008-09-30 Thread jaideep
hi imran, Tanx for the xplanation... i m also interested to work with u guys ... so wats ur plan .. by the way i m from india plz ... ping me we can chat on tis ... On Sep 26, 10:14 am, Imran [EMAIL PROTECTED] wrote: On Sep 25, 10:33 am, sukanto [EMAIL PROTECTED] wrote: Hi Jaideep / Imran,

[android-beginners] Re: : Help Needed

2008-09-26 Thread sukanto
Hi imran i have one plan in my mind and let's chat onlien about it by the way i'm from india and my phone number is +91 9902804765 i'll be on leave till 12'th October, so i'wont be online unless it is required plz either call me or ping me on yahoo messenger my id [EMAIL PROTECTED] On Sep

[android-beginners] Re: : Help Needed

2008-09-26 Thread sukanto
Hi Robert, Again if it is between two Android phones we need to have some special settings ( something like push to talk option of nokia - i don't know what is the general term for it ) to send the location directly to the receiving phone may be it is possible but it has 1 major disadvantage # it

[android-beginners] Re: : Help Needed

2008-09-25 Thread Robert
I think maybe he means between two Android phones On Sep 19, 2:14 am, Imran [EMAIL PROTECTED] wrote:  Hi All...!!!         Hey i want to write a application in which i  can know the location of  my friend when he is calling me          and the distance between us        To write

[android-beginners] Re: : Help Needed

2008-09-24 Thread sukanto
Hi Jaideep / Imran, I believe this this kind of system is not possible to build without any hardware, even that will not be legal , at least in India. (no idea about laws in other countries) Actually initially i was planning to build some sort of software similar to yours. But we can't access the

[android-beginners] Re: : Help Needed

2008-09-20 Thread Phil
Hi Imran. You will definitely need some sort of additional communication between your phone and your friend's phone which will incorporate using both, getting GPS information on both phone and communicating over a server or another communication channel to tell the other phone the location of

[android-beginners] Re: : Help Needed

2008-09-20 Thread jaideep
hi i too have the same doubt .. what all exactly we need to build such an application ... where to start with..?and what all requirements we need? On Sep 19, 2:14 pm, Imran [EMAIL PROTECTED] wrote:  Hi All...!!!         Hey i want to write a application in which i  can know the location of

[android-beginners] Re: :Help needed

2008-09-16 Thread Megha Joshi
It is not recommended to send the Cursor object between Activities. Your sub-Activity, might not be int he same app, and so the Cursor would not be relevant. The recommended way to do this is to pass a content URI to the sub Activity and let the sub-Activity do the query by itself. If you know