Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am displaying a db in a TableLayout in another activity. This activity is to be started when i click a button i have put the latitude, longitude, address values in a Bundle and retrieving in the another activity but when i click the button the app crashes. Here is the stack trace:

08-24 15:45:00.166: ERROR/AndroidRuntime(6369): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.cortes/com.cortes.Display}: java.lang.NullPointerException
08-24 15:45:00.166: ERROR/AndroidRuntime(6369):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2496)
08-24 15:45:00.166: ERROR/AndroidRuntime(6369):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2512)
08-24 15:45:00.166: ERROR/AndroidRuntime(6369):     at android.app.ActivityThread.access$2200(ActivityThread.java:119)
08-24 15:45:00.166: ERROR/AndroidRuntime(6369):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1863)
08-24 15:45:00.166: ERROR/AndroidRuntime(6369):     at android.os.Handler.dispatchMessage(Handler.java:99)
08-24 15:45:00.166: ERROR/AndroidRuntime(6369):     at android.os.Looper.loop(Looper.java:123)
08-24 15:45:00.166: ERROR/AndroidRuntime(6369):     at android.app.ActivityThread.main(ActivityThread.java:4363)
08-24 15:45:00.166: ERROR/AndroidRuntime(6369):     at java.lang.reflect.Method.invokeNative(Native Method)
08-24 15:45:00.166: ERROR/AndroidRuntime(6369):     at java.lang.reflect.Method.invoke(Method.java:521)
08-24 15:45:00.166: ERROR/AndroidRuntime(6369):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:862)
08-24 15:45:00.166: ERROR/AndroidRuntime(6369):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:620)
08-24 15:45:00.166: ERROR/AndroidRuntime(6369):     at dalvik.system.NativeStart.main(Native Method)
08-24 15:45:00.166: ERROR/AndroidRuntime(6369): Caused by: java.lang.NullPointerException
08-24 15:45:00.166: ERROR/AndroidRuntime(6369):     at com.cortes.Display.onCreate(Display.java:70)
08-24 15:45:00.166: ERROR/AndroidRuntime(6369):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
08-24 15:45:00.166: ERROR/AndroidRuntime(6369):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2459)
08-24 15:45:00.166: ERROR/AndroidRuntime(6369):     ... 11 more

The Source-Code:

Bundle b=getIntent().getExtras();
latitude=b.getString("latitude");
longitude=b.getString("longitude");
address=b.getString("address");  

c=db.query(Geo_Create_Table, 
  new String[]{latitude,longitude,address},
  null,null, null, null, null
);

int i = c.getCount();
x = c.getColumnName(0);
y = c.getColumnName(1);
z = c.getColumnName(2);

while(c.moveToNext()) {
    String a = c.getString(0);
    String b1 = c.getString(1);
    String c1 = c.getString(2);
}
share|improve this question
Please post the relevant sourcecode where the exception occurs. Without, we can't help you. Thanks. – user658042 Aug 24 '11 at 10:31
1  
The error you are getting is NullPointerException, so you are getting null some where for that please show the code. – Lalit Poptani Aug 24 '11 at 10:32
Bundle b=getIntent().getExtras(); latitude=b.getString("latitude"); longitude=b.getString("longitude"); address=b.getString("address"); – hussain Aug 24 '11 at 10:44
c=db.query(Geo_Create_Table, new String[]{latitude,longitude,address}, null,null, null, null, null); – hussain Aug 24 '11 at 10:45
int i = c.getCount(); x = c.getColumnName(0); y = c.getColumnName(1); z = c.getColumnName(2); – hussain Aug 24 '11 at 10:45
show 10 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.