Java FragmentTabHost水平滚动视图+;刷安卓

Java FragmentTabHost水平滚动视图+;刷安卓,java,android,android-layout,android-fragments,android-tabs,Java,Android,Android Layout,Android Fragments,Android Tabs,我看了下面的问题 而且仍然无法在android中获得可滚动的水平标签。所有的标签都粘在一起 我的片段的onCreateView方法 @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.fragment_home, container, f

我看了下面的问题

而且仍然无法在android中获得可滚动的水平标签。所有的标签都粘在一起

我的片段的onCreateView方法

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    View rootView = inflater.inflate(R.layout.fragment_home, container, false);
    tabHost = (FragmentTabHost) rootView.findViewById(R.id.tabhost);

    tabHost.setup(getActivity(),getFragmentManager()/* getChildFragmentManager()*/, R.layout.fragment_home);

    Bundle arg1 = new Bundle();
    arg1.putInt("Arg for Frag1", 1);
    tabHost.addTab(tabHost.newTabSpec("Tab1").setIndicator("Latest Videos"), HomeFragmentChild1.class, arg1);

    Bundle arg2 = new Bundle();
    arg2.putInt("Arg for Frag2", 2);
    tabHost.addTab(tabHost.newTabSpec("Tab2").setIndicator("Hot Videos"), HomeFragmentChild2.class, arg2);

    Bundle arg3 = new Bundle();
    arg3.putInt("Arg for Frag2", 3);
    tabHost.addTab(tabHost.newTabSpec("Tab3").setIndicator("My Videos"), HomeFragmentChild2.class, arg3);

    Bundle arg4 = new Bundle();
    arg4.putInt("Arg for Frag2", 4);
    tabHost.addTab(tabHost.newTabSpec("Tab4").setIndicator("Videos"), HomeFragmentChild2.class, arg4);

    Bundle arg5 = new Bundle();
    arg5.putInt("Arg for Frag2", 5);
    tabHost.addTab(tabHost.newTabSpec("Tab5").setIndicator("Sample Videos"), HomeFragmentChild2.class, arg5);

    TabWidget tw = (TabWidget) rootView.findViewById(R.id.tabs);
    LinearLayout ll = (LinearLayout) tw.getParent();
    HorizontalScrollView hs = new HorizontalScrollView(this.getActivity());
    hs.setLayoutParams(new FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT, FrameLayout.LayoutParams.WRAP_CONTENT));
    ll.addView(hs, 0);
    ll.removeView(tw);
    hs.addView(tw);
    hs.setHorizontalScrollBarEnabled(false);
    return tabHost;
}
XML:

<android.support.v13.app.FragmentTabHost                                                                               xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+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="@+id/tabs"
        android:layout_width="match_parent"a
        android:layout_height="wrap_content"
        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="match_parent"
        android:layout_weight="1" />
   </LinearLayout>

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

此外,是否可以实现刷卡和更改选项卡的方法?
我这边可能有错误??那会很有帮助的!谢谢

使用ViewPager将是一个解决方案

请检查此链接:


另请参见:

将线性布局放置到水平滚动视图中?不,它没有帮助:(