2016-09-27 127 views
1

我嘗試了幾個鏈接來刪除FragmentTabHost中的選定標籤,但不適用於我。
First link
Second link
如何從FragmentTabhost中刪除選定的選項卡指示器?

我已經在我的XML也試過,但它不工作

android:tabStripEnabled="false" 

而且這是我對fragmenttabhost佈局。

<FrameLayout 

    android:id="@+id/realtabcontent" 
    android:layout_width="match_parent" 
    android:layout_weight="1" 
    android:layout_height="0dp" 
    /> 
    <android.support.v4.app.FragmentTabHost 
     android:id="@android:id/tabhost" 
     android:layout_width="match_parent" 
     android:layout_alignParentBottom="true" 
     android:background="@drawable/top_bg" 
     app:tabIndicatorColor="#000" 
     android:tabStripEnabled="false" 
     app:tabIndicatorHeight="0dp" 
     android:layout_height="60dp" 
     > 

    <FrameLayout 
     android:id="@android:id/tabcontent" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_weight="0" /> 

    <LinearLayout 
     android:id="@+id/tab_layout" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:showDividers="none" 
     android:orientation="horizontal" 
     android:weightSum="5" > 

     <ImageView 
      android:id="@+id/genralTabBtn" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_gravity="center_vertical" 
      android:layout_weight="1" 
      android:padding="15dp" 
      android:background="@drawable/button_1_off" /> 

     <ImageView 
      android:id="@+id/treandingTabBtn" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_gravity="center_vertical" 
      android:layout_weight="1" 
      android:padding="12dp" 
      android:background="@drawable/button_2_off" /> 

     <ImageView 
      android:id="@+id/profileTabBtn" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_gravity="center_vertical" 
      android:layout_weight="1" 
      android:padding="12dp" 
      android:background="@drawable/button_3_off" /> 

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

在我的設備選擇的標籤看起來像(PLZ檢查圖像)

摩托è設備

Moto E device

HTC設備 HTC device

回答

1

對不起遲到回覆 我也得到這個問題,我想就可以了很多東西,我終於得到成功。

請嘗試以下代碼。

fragmentTabHost.addTab(fragmentTabHost.newTabSpec("tab1").setIndicator("", getResources().getDrawable(R.drawable.tab1)), 
      HomeFragment.class, null); 

    fragmentTabHost.getTabWidget().getChildAt(0).setBackground(null);//set child background as null 
    fragmentTabHost.addTab(fragmentTabHost.newTabSpec("tab2").setIndicator("", getResources().getDrawable(R.drawable.tab2)), 
      CartFragment.class, null); 
    fragmentTabHost.getTabWidget().getChildAt(1).setBackground(null););//set child background as null 

    fragmentTabHost.addTab(fragmentTabHost.newTabSpec("tab3").setIndicator("", getResources().getDrawable(R.drawable.tab3)), 
      MoreStuffFragment.class, null); 
    fragmentTabHost.getTabWidget().getChildAt(2).setBackground(null););//set child background as null 

fragmentTabHost.getTabWidget()getChildAt( 「您的標籤位置」)的setBackground(空)。

只要你必須讓孩子和設置它的背景,空和你做了

+0

..Thanks對URS就可以回覆.. + 1你的努力。現在我還沒有任何它的要求...將在未來測試(所以我現在不接受....),當我會做這種類型的任務..謝謝 –

+0

感謝您的+1,這是我的責任來發布答案和隨時歡迎 –

+0

此解決方案還將刪除onclick動畫。 – skymedium

相關問題