2014-10-03 53 views
0

我想要一个FragmentTabHost并为选项卡设置自定义视图。 FragmentTabHost在碎片内膨胀。这是片段代码:FragmentTabHost:指定的孩子已经有父母

@Override 
public View onCreateView(LayoutInflater inflater, ViewGroup container, 
         Bundle savedInstanceState) { 
    View root = inflater.inflate(R.layout.fragment_friends, container, false); 
    mTabHost = (FragmentTabHost) root.findViewById(android.R.id.tabhost); 
    mTabHost.setup(getActivity(), getChildFragmentManager(),android.R.id.tabcontent); 

    TabHost.TabSpec friends = mTabHost.newTabSpec(FriendsTabFragment.TAG); 

    View tab = inflater.inflate(R.layout.friends_fragment_custom_tab,null); 

    ImageView view = (ImageView) tab.findViewById(R.id.tab_icon); 
    view.setImageResource(R.drawable.categoria_amici); 
    friends.setIndicator(view); 

    mTabHost.addTab(friends, FriendsTabFragment.class, null); 
    return root; 
} 

而这里的布局:

<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:orientation="vertical" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" > 

    <FrameLayout 
      android:id="@android:id/tabcontent" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:layout_weight="1"/> 

    <TabWidget 
      android:id="@android:id/tabs" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:layout_weight="0" 
      android:layout_marginBottom="-4dp"/> 

</LinearLayout> 

</android.support.v4.app.FragmentTabHost> 

这是FriendsTabFragment充气代码:

@Override 
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 
    View root = inflater.inflate(R.layout.fragment_friends_tab, container,false); 

    return root; 
} 

这是自定义视图选项卡(R.layout。 friends_fragment_custom_tab):

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
      android:orientation="vertical" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:background="@android:color/black"> 

<ImageView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/tab_icon"/> 
</LinearLayout> 

如果我使用此配置运行项目,它会在mTabHost.addTab()方法上崩溃,并说明指定的子项已经有父项。如果我在自定义视图选项卡中的ImageView周围移除LinearLayout,它将起作用!但是我需要一些定制,所以我需要那个LinearLayout。我究竟做错了什么?

+0

请把你的'fragment_friends' – mmlooloo 2014-10-03 10:26:17

回答

0

布局更改为这一个:

<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:orientation="vertical" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" > 

    <TabWidget 
      android:id="@android:id/tabs" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:layout_weight="0" 
      android:layout_marginBottom="-4dp"/> 

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

,改变:

mTabHost.setup(getActivity(), getChildFragmentManager(),android.R.id.tabcontent); 

    friends.setIndicator(view); 

mTabHost.setup(getActivity(), getChildFragmentManager(),R.id.realtabcontent); 

    friends.setIndicator(tab); 
+0

布局我需要的标签控件位于布局的底部而不是顶部。 – edoardotognoni 2014-10-03 12:07:04

+0

无论如何,我试着用你说的话,但它仍然会抛出同样的异常。 – edoardotognoni 2014-10-03 12:12:52

+0

再看一遍=> friends.setIndicator(** tab **); – mmlooloo 2014-10-03 12:42:38

相关问题