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檢查圖像)
摩托è設備
..Thanks對URS就可以回覆.. + 1你的努力。現在我還沒有任何它的要求...將在未來測試(所以我現在不接受....),當我會做這種類型的任務..謝謝 –
感謝您的+1,這是我的責任來發布答案和隨時歡迎 –
此解決方案還將刪除onclick動畫。 – skymedium