[android-developers] To get help in read XML file excluding extra characters.

2010-07-19 Thread vikram kadam
Res. All I was tried to parse XML file using SAXParser and DefaultHandler class. It gives me output but there are some unexpected extra characters in between data. I found that it gives me '[]' at the place of #13, and tags b as it is from file. can you help me to solve this problem.

[android-developers] To get help in read XML file excluding extra characters.

2010-07-19 Thread vikram kadam
. Thank You (Vikram Kadam) -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr

[android-developers] Re: Click on Home icon need to start application from beginning

2010-10-12 Thread vikram kadam
Hi, When you click on home button you have to create intent object and have to start home activity. but before starting activity set intent flag as follow. Intent intent=new Intent(context,HomeActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);