1

我是 Android 开发的新手,在显示我创建的布局时遇到了问题 - 我有一个主要活动和一个在启动时加载的布局 - 我希望在按下按钮时显示另一个布局 - 但是显示另一个布局显示一个空白屏幕(另一个布局上有一个文本字段,所以它不应该是空白的) - 我在这里错过了什么吗?

public class MainActivity : Activity
{
    int count = 1;

    protected override void OnCreate (Bundle bundle)

    {
        base.OnCreate (bundle);

        // Set our view from the "main" layout resource
        SetContentView (Resource.Layout.Main);

        // Get our button from the layout resource,
        // and attach an event to it
        Button num1 = FindViewById<Button> (Resource.Id.num1Button);

        num1.Click += delegate {

            //button.Text = string.Format ("This is runtime text");
            SetContentView (Resource.Layout.Num1Layout);
        };
    }
}
4

1 回答 1

1

看看http://docs.xamarin.com/guides/android/getting_started/hello%2C_multi-screen_applications。我想它可能会对你有所帮助。

于 2013-07-14T12:31:32.387 回答