我有2个片段FragmentA和FragmentB。 FragmentA位于FragmentB之上。现在我想在FragmentB上添加标签。请帮忙。 到目前为止我的代码: -
布局/ fragmentA.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Top Fragment" />
</LinearLayout>
布局/ fragmentB.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F5F6CE"
android:orientation="vertical" >
<TabHost
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" >
</TabWidget>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<include
android:id="@+id/tabdata1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
layout=“@layout/tabdata1_view"/>
<include
android:id="@+id/tabdata2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
layout=“@layout/tabdata2_view"
/>
</FrameLayout>
</LinearLayout>
</TabHost>
</LinearLayout>
FragmentB.java
public class Fragment2 extends Fragment{
TabHost myTabHost;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment2_layout, container, false);
myTabHost = (TabHost) getView().findViewById(R.id.tabhost)
return rootView;
}
}
错误: -
“myTabHost = (TabHost) getView().findViewById(R.id.tabhost)
”行发出错误,因为找不到tabhost。
请建议一种方法来实现这一目标。
答案 0 :(得分:0)
那是因为在从onCreateView返回之前,片段实际上还没有视图。您只需要相对于rootView调用findViewById。像这样:
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment2_layout, container, false);
myTabHost = (TabHost) rootView.findViewById(R.id.tabhost)
return rootView;
}
答案 1 :(得分:0)
试试这个
myTabHost = (TabHost) rootview.findViewById(android.R.id.tabhost);
这应该删除您现在面临的错误