1

I am bulding an android app where I have three separate activities MainActivity, ActivityOne, ActivityTwo. I have a title bar for all the activities. I am trying to add a Button to my ActivityOne Titile bar but if I add a button it is showing on all the other activities too. How do I make Button only on my ActivityOne title bar ?

Rob
  • 150
  • 1
  • 4
  • 17

1 Answers1

0

Do you user the 'include' variable in your xml ?

mickeyyang
  • 455
  • 4
  • 6
  • Got the solution. I made one more Menu_main.xml file under menu for my ActivityOne and added a Button on title bar. – Rob Apr 17 '16 at 21:48