How to get rid of horizontal scroll bar in tabhost?

后端 未结 2 1879
渐次进展
渐次进展 2020-12-10 20:27

I want to get rid of horizontal scroll bar in TabHost. It\'s there even if TabWidget is on top.

Below is my xml layout.



        
相关标签:
2条回答
  • 2020-12-10 20:52

    Nest it into a Linearlayout

        <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
    
        android:gravity="center_horizontal">      
       <TabHost 
        android:id="@android:id/tabhost"    
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        >
    ...
    ...
    ...
        </TabHost>
        </LinearLayout>
    
    0 讨论(0)
  • 2020-12-10 21:12

    Putting this worked for me in the frame layout:

    android:foreground="@null"
    android:layout_marginTop="-6dp"
    
    0 讨论(0)
提交回复
热议问题