我知道如何处理活动文件中的按钮,textViews等元素:
SetContentView(Resource.Layout.Gesture1);
FindViewById<ImageButton>(Resource.Id.helloBn).Click += delegate
{
Toast.MakeText(this, "hello", ToastLength.Short).Show();
};
效果很好。但我需要从这里更改另一个axml的textView.text。 我怎么能这样做?