android startactivity
- by mnish
Hello,
I have an application that contains 3 activities A, B and C. The activity A is the one that gets started when I start my app. From A I start B using startActivity(A.this, B.class), this goes well. What goes wrong is when I want to start the activity C from B.
this how the manifestfile looks like:
<activity android:name=".B"/>
<activity android:name=".C"/>
I know that I can do the follwoings: start B from A and then from B go back to A and then start C
or let B has its own manifestfile thus a stand lone app, and let C be an activity within this app.
Any suggestion is welcome. My apoligies for my bad english.
thank you