-5

I'm a noob to programming, and I'm having trouble trying to figure out how to create another page and be able to tap a button on the main page to access the new page.

  • A duplicate of http://stackoverflow.com/questions/9144500/load-new-page-on-button-click-in-android – AurA Apr 24 '13 at 06:55

3 Answers3

2

well for this you need the knowledge of Activities in Android coupled with the knowledge of Intent which are used for inter-activity communication. After that you will have to learn the Gestures and their implementations in Android.

Please note: This was probably your first question. that's why you wont understand negative votes that you are getting. Read the about page of Stack Overflow and understand what the site is all about.

D'yer Mak'er
  • 1,632
  • 5
  • 24
  • 47
0

Just set Onclicklistener for your button. on Onclick(), use Intent to move to your next activity.Activity, here means view,according to you.

DGN
  • 702
  • 3
  • 12
0

And for Xamarin if you want it

Xamarin Intent

Like this

menu.Click += delegate
        {
            var intent459 = new Intent(this, typeof(MenuTopActivity));
            StartActivity(intent459);
        };