com.example.main无法强制转换为android.support.v4.app.Fragment

时间:2014-10-21 01:45:02

标签: java android android-fragments android-tabhost manifest

关注FragmentTabHost上的基本android文档(顶部示例 - 活动中的FragmentTabHost)并收到以下错误:

10-21 02:30:07.409  26265-26265/com.example E/AndroidRuntime﹕ FATAL EXCEPTION: main
java.lang.ClassCastException: com.example.Main cannot be cast to android.support.v4.app.Fragment

奇怪的是,我已经正确地遵循了一切并安装了必要的包裹。

Main.java

import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentTabHost;

public class Main extends FragmentActivity {
    // Fragment TabHost as mTabHost
    private FragmentTabHost mTabHost;

    @Override
    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        mTabHost = (FragmentTabHost)findViewById(android.R.id.tabhost);
        mTabHost.setup(this, getSupportFragmentManager(), R.id.realtabcontent);

        mTabHost.addTab(mTabHost.newTabSpec("tab1").setIndicator("Tab1"),
                Main.class, null);
        mTabHost.addTab(mTabHost.newTabSpec("tab2").setIndicator("Tab2"),
                ListNewItem.class, null);
        mTabHost.addTab(mTabHost.newTabSpec("tab3").setIndicator("Tab3"),
                Favourites.class, null);
        mTabHost.addTab(mTabHost.newTabSpec("tab4").setIndicator("Tab4"),
                Notifications.class, null);
    }
}

main.xml中

注意:尝试显示预览时,Intellij会在侧窗中显示以下内容:

  

渲染问题渲染期间引发的异常:没有已知的选项卡   tag null

库错误可能吗?

<android.support.v4.app.FragmentTabHost
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@android:id/tabhost"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical" >

        <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="0"
                android:orientation="horizontal" />

        <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="0dp"
                android:layout_height="0dp"
                android:layout_weight="0" />

        <FrameLayout
                android:id="@+id/realtabcontent"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1" />
    </LinearLayout>
</android.support.v4.app.FragmentTabHost>

的Manifest.xml

<activity android:name=".Main"
        android:label="@string/main"
        android:uiOptions="splitActionBarWhenNarrow" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
</activity>

Notifications.java(命名错误的片段)

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class Favourites extends Fragment  {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        View V = inflater.inflate(R.layout.favourites, container, false);

        return V;
    }
}

有谁知道为什么我在渲染时遇到问题以及为什么班级转换不起作用?

1 个答案:

答案 0 :(得分:1)

就像你在documentation中看到的那样,我们需要将Fragment类传递给addTab()函数,而不是FragmentActivity。

在这里你传递Main.Class

mTabHost.addTab(mTabHost.newTabSpec("tab1").setIndicator("Tab1"),
                Main.class, null);

哪个是FragmentActivity类而不是片段

public class Main extends FragmentActivity 

参见本部分

mTabHost.addTab(mTabHost.newTabSpec("simple").setIndicator("Simple"),
                FragmentStackSupport.CountingFragment.class, null);

他们正在传递FragmentStackSupport.CountingFragment.class这是一个片段

让你更加确定看到FragmentStackSupport.CountingFragment的android源代码的这个grepcode链接 - &gt; link

这将解释为什么你得到java.lang.ClassCastException,因为你传递了错误类型的类。