“这个类在Android平台上已经过时了”

时间:2016-08-16 09:56:42

标签: android xamarin

我在我的主页面中使用此代码,我在上面收到此错误。我怎样才能解决这个问题?我不知道是否重要,但我还安装了appcompat v7。我的平台是Xamarin和Visual Studio。

这是我的代码:

 public class MainActivity : TabActivity //Here i get my error in TabActivity
{
    private void CreateTab(Type activityType, string tag, string label)
    {
        var intent = new Intent(this, activityType);
        intent.AddFlags(ActivityFlags.NewTask);

        var spec = TabHost.NewTabSpec(tag);

        spec.SetIndicator(label);
        spec.SetContent(intent);

        TabHost.AddTab(spec);
    }
    protected override void OnCreate(Bundle bundle)
    {
        base.OnCreate(bundle);


        SetContentView(Resource.Layout.Main);
        CreateTab(typeof(WhatsOnActivity), "Page1", "Page1");
        CreateTab(typeof(SpeakersActivity), "Page2", "Page2");
}

我的xml文件:

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
     android:id="@android:id/tabhost"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent">
 <LinearLayout
      android:orientation="vertical"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:padding="5dp">
<TabWidget
        android:id="@android:id/tabs"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />
<FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="5dp" />
</LinearLayout>
</TabHost>

0 个答案:

没有答案