public Story()
        {
            mPages[0] = new Page(
                Resource.Drawable.page0,
                "On your return trip from studying Saturn's rings, you hear a distress signal that seems to be coming from the surface of Mars. It's strange because there hasn't been a colony there in years. Even stranger, it's calling you by name: \"Help me, {0}, you're my only hope.\"",
                new Choice("Stop and investigate", 1),
                new Choice("Continue home to Earth",2)
            );

            mPages[1] = new Page(
                Resource.Drawable.page1,
                "You deftly land your ship near where the distress signal originated. You didn't notice anything strange on your fly-by, but there is a cave in front of you. Behind you is an abandoned rover from the early 21st century.",
                new Choice("Explore the cave", 3),
                new Choice("Explore the rover", 4));

            mPages[2] = new Page(
                Resource.Drawable.page2,
                "You continue your course to Earth. Two days later, you receive a transmission from HQ saying that they have detected some sort of anomaly on the surface of Mars near an abandoned rover. They ask you to investigate, but ultimately the decision is yours because your mission has already run much longer than planned and supplies are low.",
                new Choice("Head back to Mars to investigate", 4),
                new Choice("Continue home to Earth", 6));

            mPages[3] = new Page(
                Resource.Drawable.page3,
                "Your EVA suit is equipped with a headlamp, which you use to navigate the cave. After searching for a while your oxygen levels are starting to get pretty low. You know you should go refill your tank, but there's a very faint light up ahead.",
                new Choice("Refill at ship and explore the rover", 4),
                new Choice("Continue towards the faint light", 5));

            mPages[4] = new Page(
                Resource.Drawable.page4,
                "The rover is covered in dust and most of the solar panels are broken. But you are quite surprised to see the on-board system booted up and running. In fact, there is a message on the screen: \"{0}, come to 28.543436, -81.369031.\" Those coordinates aren't far, but you don't know if your oxygen will last there and back.",
                new Choice("Explore the coordinates", 5),
                new Choice("Return to Earth", 6));

            mPages[5] = new Page(
                Resource.Drawable.page5,
                "After a long walk slightly uphill, you end up at the top of a small crater. You look around, and are overjoyed to see your favorite android, {0}-S1124. It had been lost on a previous mission to Mars! You take it back to your ship and fly back to Earth.");

            mPages[6] = new Page(
                Resource.Drawable.page6,
                "You arrive home on Earth. While your mission was a success, you forever wonder what was sending that signal. Perhaps a future mission will be able to investigate...");
        }
        public void loadPage(int pageId)
        {
            mCurrentPage = mStory.getPage (pageId);
            Drawable drawable = Resources.GetDrawable (mCurrentPage.getPageImageId ());
            storyImage.SetImageDrawable (drawable);
            string text = String.Format (mCurrentPage.getStoryText (), name);
            storyText.Text = text;

            if (mCurrentPage.isFinal()) {
                choice1.Visibility = ViewStates.Invisible;
                choice2.Text = "PLAY AGAIN!";
                choice2.Click -= choicePath ;
                choice2.Click += endActivity ;
            }
            else {
                choice1.Text = mCurrentPage.getChoice1 ().getText ();
                choice2.Text = mCurrentPage.getChoice2 ().getText ();

                if(!choice1.HasOnClickListeners && !choice2.HasOnClickListeners){
                    choice1.Click += choicePath;
                    choice2.Click += choicePath;
                }
            }
        }