4
votes
Taking the SCJP exam
In a totally unregulated market like software development the value of any certification is questionable. Becoming a "Sun Certified Java Programmer" doesn't stop you from making "silly programming …
1
vote
Taking the SCJD exam
Same answer as last time really.
The question of is it worth the effort comes down to w …
2
votes
Android API for detecting new media from inbuilt camera & mic
There's a special broadcast Intent that should get called every time an application writes anything new to the Media Store:
Intent.ACTION_MEDIA_SCANNER_SCAN_FILE
T …
8
votes
Android HTTP Connection
As far as configuration goes, the only setting you should need to access the Internet from your application is the INTERNET permission, enabled by adding the following line outside the App …
0
votes
Resources.openRawResource() issue Android
Yes, you should be able to use openRawResource to copy a binary across from your raw resource folder to the device.
Based on the example code in the API demos (content/ReadAsse …
1
vote
In an ExpandableListView, how can I show one additional line at the end of the child results?
Perhaps you could try a slightly different approach.
Rather than trying to add an extra item to the ListView directly, maybe try adding an 'AlternateChild' object to the underlying data so …
4
votes
Overlapping Views in Android
Android handles transparency across views and drawables (including PNG images) natively, so the scenario you describe (a partially transparent ImageView in front of a Gallery) is certa …
2
votes
showing dialog from run method
It's hard to tell from the code snippet you've provided, but I think you're using the Handler incorrectly.
What you need to do is initialize a new Handler object on them main t …
