Is there any way I can remove the small line that appears under tabs for android 2.1?

I have found the solution for for 2.1++ versions but couldn't find anything for android 2.1 or less.

//tabHost.getTabWidget().setStripEnabled(false); .

Can I remove this line by making tabwidget and an imageview in relative layout such that imageView overlaps this line under the tab?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

only hack which i found is:

<TabWidget
    android:id="@android:id/tabs"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="-6dp"
    android:layout_marginTop="2dp" />

Hope this helps!!

link|improve this answer
Thanks mudit bhai :) Working for me :) – Gaurav Jan 24 at 8:22
Please accept the answer so that others can have reference! – Hiral Jan 24 at 12:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.