| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 2 years, 1 month |
| seen | 17 mins ago | |
| stats | profile views | 1,373 |
Logic structures and other semi-useful things.
|
May 19 |
answered | How to use nc send udp packet to windows 7? |
|
May 19 |
comment |
Issue while Sending Message and making call together What network are you using for your test? Is it a GSM network or a CDMA network? |
|
May 19 |
answered | Android application depending on Google Voice Search |
|
May 19 |
answered | mod_proxy_html and AJAX Response |
|
May 19 |
answered | Check if a user likes my page via website |
|
May 18 |
awarded | Enlightened |
|
May 18 |
awarded | Nice Answer |
|
May 18 |
answered | Caused by: java.lang.NullPointerException while trying to call other Activity |
|
May 18 |
answered | embedded http server on android to server assets folder |
|
May 16 |
awarded | Nice Answer |
|
May 15 |
awarded | Enlightened |
|
May 15 |
awarded | Nice Answer |
|
May 13 |
comment |
Existing TCP socket class throw NetworkOnMainThreadException when updated to new API That's it: essentially you can't perform any network activity at all, connecting/listening/sending directly in line with any UI activity (so not from any button presses or Handlers or anything else). |
|
May 13 |
answered | Extracting multiple colors from a TextView Android |
|
May 13 |
answered | Existing TCP socket class throw NetworkOnMainThreadException when updated to new API |
|
May 10 |
awarded | Guru |
|
May 9 |
awarded | Enlightened |
|
May 9 |
awarded | Nice Answer |
|
May 8 |
comment |
Outputting the location to the sms Try Intent loc = new Intent(Intent.ACTION_VIEW); loc.setData(Uri.parse("sms:")); loc.putExtra("sms_body", geo); startActivity(loc); and see if that works? |
|
May 7 |
comment |
Outputting the location to the sms SO, you have a different error: you'll need to look for the line number that the NullPointer refers to and fix that before you can go any further. |