当我使用包含选项卡的SetContentView(Resource.Layout.Main)时,我得到一个Android.Views.InflateException

时间:2013-04-16 15:34:41

标签: c# android android-layout xamarin.android xamarin-studio

当我使用包含标签的Android.Views.InflateException并且无法理解原因时,我得到setContentView (Resource.Layout.Main)

我一直在尝试用我的问题找到其他人,但似乎Android.Views.InflateException是一个非常普遍的错误信息,因为人们似乎在各种情况下得到它。我已经尝试了一些我见过的东西,但到目前为止他们还没有帮助我。

奇怪的是,完全相同的Main.axml代码在不同的试用版应用程序中完美运行,但我不能在这个代码中使用它。

我在编程应用程序方面相当新,我不知道它是否有任何区别,但我正在使用 Xamarin Studio 。我已经尝试了一些其他简单的应用程序来使用所有新东西,并且它们没有太多麻烦。

这是我的主要启动器的代码:

using System;

using System.IO;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
//using Mono.Data.Sqlite;

namespace MultiFuncTest1
{
    [Activity (MainLauncher=true, Label="@string/app_name", Theme="@android:style/Theme.NoTitleBar")]
    public class MultiFuncTest1 : TabActivity
    {

        protected override void OnCreate (Bundle bundle)
        {
            base.OnCreate (bundle);

            // Set the view from the "main" layout resource
            SetContentView (Resource.Layout.Main);


            // ----------------------------------------------------------------------------------------------------
            //                                                  TABS
            // ----------------------------------------------------------------------------------------------------

            // Declares TabSpec and Intent
            TabHost.TabSpec spec;
            Intent intent;

            // Creates and Intent To Start and Activity for the Image-tab.
            intent = new Intent (this, typeof (ImageActivity));
            intent.AddFlags (ActivityFlags.NewTask);

            // Starts a TabSpec for the Image-tab and adds it to the TabHost
            spec = TabHost.NewTabSpec ("image");
            spec.SetIndicator ("Image", Resources.GetDrawable (Resource.Drawable.Icon));
            spec.SetContent (Intent);
            TabHost.AddTab (spec);

            // Creates and Intent To Start and Activity for the Icon-tab.
            intent = new Intent (this, typeof (IconActivity));
            intent.AddFlags (ActivityFlags.NewTask);

            // Starts a TabSpec for the Icon-tab and adds it to the TabHost
            spec = TabHost.NewTabSpec ("icons");
            spec.SetIndicator ("Icons", Resources.GetDrawable (Resource.Drawable.Icon));
            spec.SetContent (Intent);
            TabHost.AddTab (spec);

            // Creates and Intent To Start and Activity for the Image-tab.
            intent = new Intent (this, typeof (ItemListActivity));
            intent.AddFlags (ActivityFlags.NewTask);

            // Starts a TabSpec for the Image-tab and adds it to the TabHost
            spec = TabHost.NewTabSpec ("itemList");
            spec.SetIndicator ("Item List", Resources.GetDrawable (Resource.Drawable.Icon));
            spec.SetContent (Intent);
            TabHost.AddTab (spec);

            // Creates and Intent To Start and Activity for the Image-tab.
            intent = new Intent (this, typeof (WebLinkActivity));
            intent.AddFlags (ActivityFlags.NewTask);

            // Starts a TabSpec for the Image-tab and adds it to the TabHost
            spec = TabHost.NewTabSpec ("webLink");
            spec.SetIndicator ("Web Links", Resources.GetDrawable (Resource.Drawable.Icon));
            spec.SetContent (Intent);
            TabHost.AddTab (spec);

            TabHost.CurrentTab = 1;
        }

    }


}

这是我的ImageActivity的代码,它应该是其中一个标签。所有标签活动目前都有非常相似的代码,因为我只是想让大纲工作:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

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

namespace MultiFuncTest1
{
    [Activity (Label = "ImageActivity")]
    public class ImageActivity : Activity
    {
        protected override void OnCreate (Bundle savedInstanceState)
        {
            base.OnCreate (savedInstanceState);

            //SetContentView (Resource.Layout.ImagePage);

            TextView textview = new TextView (this);
            textview.Text = "This is the Artists tab";
            SetContentView (textview);
        }
    }
}

这是我的Main.axml

<?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>

ImagePage.axml将成为其中一个标签。其他标签目前看起来非常相似:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:minWidth="25px"
    android:minHeight="25px">
    <ImageView
        android:src="@drawable/Icon"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/iPimageView1" />
</LinearLayout>

这是我获得的Stack Trace的第一部分。在“托管异常堆栈跟踪结束”部分后,跟踪会持续很长时间,并以“和250多行”或类似的东西结束,所以我认为这些并不重要?如果他们帮忙告诉我,我也会添加它们:

Android.Views.InflateException: Binary XML file line #24: Error inflating class <unknown>
at Android.Runtime.JNIEnv.CallNonvirtualVoidMethod (intptr,intptr,intptr,Android.Runtime.JValue[]) [0x00024] in /Users/builder/data/lanes/monodroid-lion-bs1/03814ac5/source/monodroid/src/Mono.Android/src/Runtime/JNIEnv.g.cs:616
at Android.App.Activity.SetContentView (int) [0x0006b] in /Users/builder/data/lanes/monodroid-lion-bs1/03814ac5/source/monodroid/src/Mono.Android/platforms/android-8/src/generated/Android.App.Activity.cs:3119
at MultiFuncTest1.MultiFuncTest1.OnCreate (Android.OS.Bundle) [0x00009] in d:\Mobile App Dev\Projects\MultiFuncTest1\MultiFuncTest1\MultiFuncTest1.cs:24
at Android.App.Activity.n_OnCreate_Landroid_os_Bundle_ (intptr,intptr,intptr) [0x00010] in /Users/builder/data/lanes/monodroid-lion-bs1/03814ac5/source/monodroid/src/Mono.Android/platforms/android-8/src/generated/Android.App.Activity.cs:1490
at at (wrapper dynamic-method) object.46f87726-02c8-486d-b95c-c7cce7c7d106 (intptr,intptr,intptr) <IL 0x00017, 0x00043>
at 
at --- End of managed exception stack trace ---

我希望有人可以帮助我理解这里的问题,我真的很想掌握我可能做错的事情......

5 个答案:

答案 0 :(得分:0)

您的ImagePage.axml不需要TabHost和TabWidget标记;你应该只有Main.axml中的那些。选项卡的布局将包含在Main.axml的FrameLayout中,因此每个选项卡布局文件仅为

答案 1 :(得分:0)

我经过一些搜索后发现了问题,这是我主要的发射器。问题是我试图在“spec.SetContent(Intent);”中调用类“Intent”。在创建每个类的同时,我应该调用的是我的实例,“intent”(没有大写“i”)。所以基本上它是一个拼写错误,但它没有显示为我的语法错误,因为有一个同名的类......

非常感谢!

答案 2 :(得分:0)

这可能是无关紧要的,但无论谁仍然想知道这个错误可能来自哪里 - 可能会指出你正确的方向。

我有同样的问题,结果是我在AXML中引用的自定义控件指定了错误的路径,i。即控制无处可寻。

答案 3 :(得分:0)

我多次遇到过这个问题,

如果您未在活动中定义主题,则会抛出此特定异常。你应该有这样的东西

[Activity (Label = "ImageActivity", Theme="@style/yourtheme")]

答案 4 :(得分:0)

我已经多次遇到这个问题

如果您未在活动中定义主题,则会引发此特定异常。你应该有这样的东西

[活动(标签=“ ImageActivity”,主题=“ @ styles /您的主题”)]

####在Visual Studio中,样式的文件名是styles.xml而不是style.xml