Xamarin.android 如何在另一个不是此Activity.cs资源的axml中更改textView?

Xamarin.android 如何在另一个不是此Activity.cs资源的axml中更改textView?,xamarin.android,c#-3.0,Xamarin.android,C# 3.0,当我有以下情况时,我知道如何使用活动文件中的按钮、文本视图等元素: SetContentView(Resource.Layout.Gesture1); FindViewById<ImageButton>(Resource.Id.helloBn).Click += delegate { Toast.MakeText(this, "hello", ToastLength.Short).Show(); }; SetContentView(Resource.Layout.G

当我有以下情况时,我知道如何使用活动文件中的按钮、文本视图等元素:

 SetContentView(Resource.Layout.Gesture1);
 FindViewById<ImageButton>(Resource.Id.helloBn).Click += delegate
 {
    Toast.MakeText(this, "hello", ToastLength.Short).Show();
 };
SetContentView(Resource.Layout.Gesture1);
FindViewById(Resource.Id.helloBn)。单击+=委派
{
Toast.MakeText(这是“hello”,ToastLength.Short).Show();
};
它工作得很好。但是我需要从这里更改另一个axml的textView.text。 我该怎么做