gpt4 book ai didi

android - 扩展 fragment 的类中的选项卡

转载 作者:行者123 更新时间:2023-11-29 01:37:26 25 4
gpt4 key购买 nike

我正在阅读许多教程如何在扩展 FragmentActivity 的类中实现选项卡,
但没有人知道如何在扩展 Fragment 的类中实现制表符

我用 AndroidStudio 创建了一个带有 NavigationDrawerFragment 的新项目:
这个 navigationDrawerFragment 为它显示的每个选项菜单创建一个新的 Fragment。在此 fragment 中,我需要一些选项卡。

如何在 onCreateView 中添加标签 fragment 的方法?
有人可以给我一个非常简单的例子吗?


我正在尝试解决我的问题:

第 1 步 - 我创建了一个新的 LinearLayout , 它包含 tabHost这是主要 fragment :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment1"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">

<TabHost
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/tabHost"
android:layout_gravity="center_horizontal">

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

<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
</TabWidget>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<LinearLayout
android:id="@+id/tab1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">
</LinearLayout>
<LinearLayout
android:id="@+id/tab2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">
</LinearLayout>
<LinearLayout
android:id="@+id/tab3"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">
</LinearLayout>
</FrameLayout>
</LinearLayout>
</TabHost>
</LinearLayout>

第 2 步 - 在主 fragment 上我放置了这行代码:

public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
//View rootView = inflater.inflate(R.layout.vediamo, container, false);

mTabHost = new FragmentTabHost(getActivity());
mTabHost.setup(getActivity(), getChildFragmentManager(), R.id.fragment1);

mTabHost.addTab(mTabHost.newTabSpec("simple").setIndicator("Simple"),
CreaAnnoFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("contacts").setIndicator("Contacts"),
ModificaAnnoFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("throttle").setIndicator("Throttle"),
EliminaAnnoFragment.class, null);

return mTabHost;
}

@Override
public void onDestroyView() {
super.onDestroyView();
mTabHost = null;
}

如果我运行该程序,我会收到此错误:

java.lang.NullPointerException
at myapps.studentsmarks.CreaAnnoFragment.onAttach(CreaAnnoFragment.java:100)

固定 - 解决方案
“包裹 fragment ”不需要 onAttach()方法,这是逻辑。所以直接删掉

最佳答案

为此,您可以使用 FragmentTabHost 类,它让您可以将选项卡添加到您的 Fragment,就像您为 Activities 所做的那样。

这是一个例子:

public class FragmentTabsFragmentSupport extends Fragment {
private FragmentTabHost mTabHost;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
mTabHost = new FragmentTabHost(getActivity());
mTabHost.setup(getActivity(), getChildFragmentManager(), R.id.fragment1);

mTabHost.addTab(mTabHost.newTabSpec("simple").setIndicator("Simple"),
FirstFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("contacts").setIndicator("Contacts"),
SecondFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("throttle").setIndicator("Throttle"),
ThirdFragment.class, null);

return mTabHost;
}

@Override
public void onDestroyView() {
super.onDestroyView();
mTabHost = null;
}

有关更多信息,请查看 official documentation .

关于android - 扩展 fragment 的类中的选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27094494/

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