gpt4 book ai didi

java - com.example.main 无法转换为 android.support.v4.app.Fragment

转载 作者:行者123 更新时间:2023-11-30 02:36:17 25 4
gpt4 key购买 nike

只需遵循 FragmentTabHost 上的基本 android 文档即可(顶部示例 - Activity 中的 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

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

主.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);
}
}

ma​​in.xml

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

Rendering Problems Exception raised during rendering: No tab known for 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>

list .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(错误命名的 fragment )

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;
}
}

有谁知道为什么我在渲染和类转换都不起作用时遇到问题?

最佳答案

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

在这里你传递了 Main.Class

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

哪个是 FragmentActivity 类而不是 Fragment

public class Main extends FragmentActivity 

看这部分

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

他们正在传递 FragmentStackSupport.CountingFragment.class,这是一个 fragment

为了让您更加确定,请查看 FragmentStackSupport.CountingFragment -> link 的 android 源代码的 grepcode 链接。

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

关于java - com.example.main 无法转换为 android.support.v4.app.Fragment,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26477658/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com