2,303 reputation
920
bio website
location
age
visits member for 2 years, 8 months
seen 30 mins ago
stats profile views 98

May
24
answered How to add external jar libraries to an android project from the command line
May
24
comment How to add external jar libraries to an android project from the command line
you cannot overwrite the project.all.jars.path like you have in your example. It will result in a null pointer exception during the ant build process because you are re-defining project.all.jars.path so that ${toString:project.all.jars.path} will evaluate to null. The correct way to do this is to introduce a temp.jars.path into which you include you new jars dir, and then you overwrite the project.all.jars.path with temp.jars.path
May
24
awarded  Nice Answer
May
8
comment Apple pList form of XML can I parse it through Android Java?
no prob. hope it helps.
May
8
revised Apple pList form of XML can I parse it through Android Java?
fixed a copy/paste error in the sample.xml
May
8
comment Apple pList form of XML can I parse it through Android Java?
@DeepakSenapati I updated the code to support date and true/false pList elements. Also updated the sample.xml and usage.
May
8
revised Apple pList form of XML can I parse it through Android Java?
Added support for date and true/false pList elements. Updated sample example usage
Apr
19
comment Android: Activity onResume
are you getting any kind of errors in the logs ?
Apr
2
comment Android parsing of XML file Null Pointer Exception
No prob. glad I could help. Please accept the answer if you found it useful :)
Mar
30
comment Crash at creating Activity
Are you sure your content array is not null? Print it out. Make sure that content = db.getScores(); is returning what you expect.
Mar
30
revised Android parsing of XML file Null Pointer Exception
added 137 characters in body
Mar
30
answered Android parsing of XML file Null Pointer Exception
Mar
28
answered Extracting a sub file from a zip file
Mar
26
comment Saving the state of fragments?
It's not guaranteed that onSaveInstanceState() will be called. See the doc here: developer.android.com/reference/android/app/Activity.html "Note that it is important to save persistent data in onPause() instead of onSaveInstanceState(Bundle) because the latter is not part of the lifecycle callbacks, so will not be called in every situation as described in its documentation." Also read carefully developer.android.com/reference/android/app/…
Mar
13
awarded  Necromancer
Feb
17
awarded  Revival
Feb
7
answered Android: Populate ListView from an internal XML
Feb
7
revised Android: Populate ListView from an internal XML
code formatting
Feb
7
suggested suggested edit on Android: Populate ListView from an internal XML
Jan
17
answered Get all the strings in strings.xml