rahul hajela
Lurker
1 down vote favorite
I took some code to make a simple Form on Android. It seems as if some parts of the code are referencing to something. I'm not sure what to put there to make it work? I get errors.
Error
18, 32) error: cannot find symbol variable activity_form
Error
33, 88) error: package com.chalkstreet.learnandroid.main does not exist
Error
48, 50) error: cannot find symbol class MainSource
Error
57, 41) error: cannot find symbol variable menu_main
I don't think that I need to be using the package that I am not having.
Example problem:
Intent sender = new Intent(Form.this,
===> ???? com.chalkstreet.learnandroid.main.Display.class);
Here's my form:
I took some code to make a simple Form on Android. It seems as if some parts of the code are referencing to something. I'm not sure what to put there to make it work? I get errors.
Error
18, 32) error: cannot find symbol variable activity_formError
33, 88) error: package com.chalkstreet.learnandroid.main does not existError
48, 50) error: cannot find symbol class MainSourceError
57, 41) error: cannot find symbol variable menu_mainI don't think that I need to be using the package that I am not having.
Example problem:
Intent sender = new Intent(Form.this,
===> ???? com.chalkstreet.learnandroid.main.Display.class);
Here's my form:
