Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I already know how to start a one new activity when you click a button, but I have three buttons on the one layout. And I want each of the three buttons on that ONE activity to link to three other activities.

I have on the activity I have called 'main', Button 1 which is called services and I want to link it to the services activity. Button 2 which is called Search and I want it to go to the Search activity and thirdly 'map' which I want to link to the map activity.

Can someone help me do this please? Thanks

EDIT:Also, I'm a beginner with Android coding, could you explain in a little bit more detail please?

share|improve this question

3 Answers

up vote 0 down vote accepted

Its very easy dear. Just put this code on button click event

Intent myIntent = new Intent(CurrentActivity.this, NextActivity.class);
CurrentActivity.this.startActivity(myIntent);
share|improve this answer
Thanks, I used this method and when I went to debug the app. It said, Source not found, in red writing. And below it, a button saying edit source lookup path... – cwilkinson1998 Jun 14 '12 at 18:43
Do you know how to fix this error? – cwilkinson1998 Jun 14 '12 at 18:43
"Source not found, in red writing." with which line (of your code)? – Dheeresh Singh Jun 14 '12 at 18:45
When I add this to the onClick event method, it crashes the app when I click on the button. Do I have to add something to the NextActivity.class? – cwilkinson1998 Jun 19 '12 at 16:22
what error it shows in log? – Hardik Jun 19 '12 at 16:23

Tie an onclick listener to all three buttons. In the listener, retrieve the ID of the button. Make a variable of type Class. Depending on the value of the button ID, initialize it to the class of the activity to invoke. Then construct an Intent for that class, and call startActivity().

EDIT for hawaii.five-0: here's how I'd do it:

@Override
public void onClick(View view) {
   Class c = null;
   switch (view.getId()) {
      case R.id.serviceBtn:
         c = ServiceActivity.class;
         break;
      case R.id.searchBtn:
         c = SearchActivity.class;
         break;
      case R.id.mapBtn:
         c = MapActivity.class;
         break;
   } 
   Intent i = new Intent(YourActivity.this, c);
   startActivity(i);
}

EDIT2:

class CurrentActivity extends Activity
    implements OnClickListener  
{
    void onCreate(Bundle b)
    {
        //Other initialization goes here...

        ((Button)findViewById(R.id.MyButton1)).setOnClickListener(this);
        ((Button)findViewById(R.id.MyButton2)).setOnClickListener(this);
        ((Button)findViewById(R.id.MyButton3)).setOnClickListener(this);
    }

}
share|improve this answer
1  
gr8 I can say that your code will through the exception in one case ... – Dheeresh Singh Jun 14 '12 at 18:32
If a click comes from an unknown ID, then yes. But why would it? – Seva Alekseyev Jun 14 '12 at 18:35
1  
if user have any other clickable view on screen..... – Dheeresh Singh Jun 14 '12 at 18:39
1  
for what that meant Singh your approach is bad. – Sajmon Jun 14 '12 at 18:41
1  
Good answer. Simply check whether c is null before firing off the Intent. – Knossos Jun 14 '12 at 18:46
show 8 more comments

So where is problem? Just set that your class will implements View.OnClickListener and override onClick() method a you got it.

public class MainActivity extends Activity implements View.OnClickListener {
   // body
}

@Override
public void onClick(View view) {
   switch (view.getId()) {

      case R.id.serviceBtn:
         Intent serviceIntent = new Intent(this, ServiceActivity.class);
         startActivity(serviceIntent);
         break;
      case R.id.searchBtn:
         Intent searchIntent = new Intent(this, SearchActivity.class);
         startActivity(searchIntent);
         break;
      case R.id.mapBtn:
         Intent mapIntent = new Intent(this, MapActivity.class);
         startActivity(mapIntent);
         break;
   } 
}
share|improve this answer
-1 for overuse of copy&paste, not understanding parametrization. – Seva Alekseyev Jun 14 '12 at 18:21
what?? are u kiding me? i wrote this fragment now. – Sajmon Jun 14 '12 at 18:22
Oh it does. Why 3 calls to intent constructor and startActivity()? They only differ in one variable. – Seva Alekseyev Jun 14 '12 at 18:22
and? i can also do with anonymous listeners of each Button i don't know where problem is, sorry. – Sajmon Jun 14 '12 at 18:26
1  
+1 For a perfectly reasonable answer. If each Intent were to require the same N-extras bundled in, I'm sure that would be in the question. Anything else is purely redundant. – Knossos Jun 14 '12 at 18:45
show 12 more comments

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.