Hi
Since I'm a newbie I don't know if I'll be explaning this correctly. But here goes it.
I'm trying from main Activity (MainFile.java) to open a Map as a new intent through a menu. Something like this...
switch(item.getItemId()) {
case VIEW_AROUND:
**Intent cityMap = new Intent(MainFile.this, Map.class);
startActivity(cityMap);**
return true;
case EXIT:
this.finish();
return true;
}
... and I already have set up thing on my manifest.xml with access to...
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<activity android:name=".Map" />
... It worked fine with other File.class, but with the Map.class doesn't seem to be working.
Might it be a better way to approach it? Is it anywhere I should be looking for the issue?
I cannot think of anything else :(
Many thanks in advance!