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

时间:2016-09-27 09:22:20

标签: xamarin.android c#-3.0

我知道如何处理活动文件中的按钮,textViews等元素:

 SetContentView(Resource.Layout.Gesture1);
 FindViewById<ImageButton>(Resource.Id.helloBn).Click += delegate
 {
    Toast.MakeText(this, "hello", ToastLength.Short).Show();
 };

效果很好。但我需要从这里更改另一个axml的textView.text。 我怎么能这样做?

0 个答案:

没有答案