[android-developers] Sync Android app with Outlook

2012-03-22 Thread ashok kumar
Right now I am having an Android application which was developed by me. Now I need to sync some of the app details with the Outlook. For example a part of my application is a To Do list. I want to sync this list with Outlook Calender. How can I do this? Any available snippets are there? Thanks in

[android-developers] How to install or run a Java Midlet in G1 Phone or on emulator

2009-01-01 Thread Ashok Kumar
HI, Can any one please help me , how to install and run a Java Midlet in G1 Phone or on emulator Regards, Ashok.V --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: Problem while creating a new file

2008-12-30 Thread Ashok Kumar
, Ashok Kumar vak...@gmail.com wrote: hi,Thanks for your quick responses Now iam trying to create new file in the below ways: Still Iam not able to create the file 1) File testFile = new File(this.getCacheDir(),aaa.txt); if (!testFile.exists()) { System.out.println(--File does

[android-developers] Problem while creating a new file

2008-12-29 Thread Ashok Kumar
Hi,I am trying to create a new file using the class File. Below is my code snippet File testFile = new File(/data/tests.txt); if (!testFile.exists()) { System.out.println(--File does not exist: ); } Initially I don't have the file tests.txt under data path. So, I am trying to

[android-developers] Re: Problem while creating a new file

2008-12-29 Thread Ashok Kumar
. You can, however, create files within your application's data directory. Get a reference to the Context and use the cache directory (getCacheDir()) or the files directory (getFilesDir()). On Dec 29, 4:36 am, Ashok Kumar vak...@gmail.com wrote: Hi,I am trying to create a new file using

[android-developers] Issues while using putExtra

2008-12-17 Thread Ashok Kumar
Hi,I am trying to pass two variables from one screen (ContactsView.java )to second screen (NewContact.java) In ContactsView.java I am passing two values as shown below: static final String CONTACT_NAME = null; static final String CONTACT_PHONENUMBER = null;

[android-developers] Issues while using putExtra

2008-12-17 Thread Ashok Kumar
Hi,I am trying to pass two variables from one screen (ContactsView.java )to second screen (NewContact.java) In ContactsView.java I am passing two values as shown below: static final String CONTACT_NAME = null; static final String CONTACT_PHONENUMBER = null;

[android-developers] Re: Issues while using putExtra

2008-12-17 Thread Ashok Kumar
; static final String CONTACT_PHONENUMBER = contact_phonenumber; Otherwise you just retrieve the extra for the value 'null'. Peli ;-) On Dec 17, 10:13 am, Ashok Kumar vak...@gmail.com wrote: Hi,I am trying to pass two variables from one screen (ContactsView.java