TextView自动链接错误

时间:2014-01-13 06:41:10

标签: c# android textview xamarin autolink

我正在使用Xamarin,并且我正在尝试使用TextView进行自动链接。

这是我的代码:

using System;
using Android.App;
using Android.Content;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;

namespace TestTextViewAutoLink
{
    [Activity (Label = "TestTextViewAutoLink", MainLauncher = true)]
    public class MainActivity : Activity
    {
        protected override void OnCreate (Bundle bundle)
        {
            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";

            SetContentView(textView);
        }
    }
}

正在显示文本,但是当我单击文本时会出现以下错误:

  

不幸的是,TestTextViewAutoLink已停止

我可以请一些帮助让这个工作吗?

提前致谢。

修改

我也尝试过这段代码,但是会出现同样的错误:

    protected override void OnCreate (Bundle bundle)
{
    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);
}

0 个答案:

没有答案