I use Xamarin and I have the following code:
base.OnCreate (bundle);
TextView textView = new TextView (this.ApplicationContext);
textView.AutoLinkMask = Android.Text.Util.MatchOptions.PhoneNumbers;
textView.Text = "This is a phone number 0800 32 32 32";
//Linkify.AddLinks(textView, MatchOptions.PhoneNumbers);
SetContentView(textView);
Can I please have some help to do the same code but with resource layout files instead?
Thanks in advance
textview.xml:
In onCreate just mention