I've got simple tab activity with next layout:

    <TabWidget
    android:id="@android:id/tabs"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"                  
    android:background="#ffffff00"        />

<FrameLayout            
    android:id="@android:id/tabcontent"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"     
   android:background="#ffffff00"          />

I use buttons as indicators for tabs

tabHost.addTab(tabHost.newTabSpec("Tab1")
                .setIndicator(new Button(this))                
                .setContent(new Intent(this, TabActivity1.class)));   

tabHost.addTab(tabHost.newTabSpec("Tab2")
                .setIndicator(new Button(this))                
                .setContent(new Intent(this, TabActivity2.class)));

In this case FrameLayout always got black line and shadow effect on top (you can see it under buttons):

alt text

The question is: How can I get rid of this line? Where is the method that draws it in Android sources?

link|improve this question

feedback

5 Answers

up vote 13 down vote accepted

Apply a custom theme to your activity, and null out the android:windowContentOverlay attribute.

Define a theme in themes.xml:

<style name="YourTheme" parent="if you want">
  ...   
  <item name="android:windowContentOverlay">@null</item>
  ...
</style>

Apply the theme on your application or the activity in AndroidManifest.xml:

<application android:theme="@style/YourTheme"
  ... >

Hope it helps. It caused me lots of headache...

link|improve this answer
1  
This also removes the window content overlay for the current activity though. Is there no way to remove only the overlay for the tab host's intents? – Michael Pardo Dec 7 '10 at 15:14
2  
Works like a charm! – rogcg Aug 23 '11 at 19:37
perfect solution! – vanleeuwenbram Jan 30 at 12:13
THANK YOU! And for all who have a theme already on the application tag like hiding the title bar for example, look here for inheriting from a parent style: developer.android.com/guide/topics/ui/… – trgraglia Apr 19 at 21:36
feedback

In your layout xml:

<TabWidget ... 
    android:tabStripEnabled="false" >

 ... 

</TabWidget>
link|improve this answer
Didn't work. Actually shadow on FrameLayout and not on TabWidget. – Orsol Aug 30 '10 at 7:41
3  
android:tabStripEnabled is available only available from 2.2 – Eby Oct 18 '10 at 12:03
feedback

It seems that the way of doing that is to nest the tabwidget in a LinerLayout... Look here.

link|improve this answer
This is not my case. He talks about line on TabWidget, but I talk about line on RelativeLayout. Even if I put TabWidget to bottom then RelativeLayout will always have this line and shadow. – Orsol Aug 18 '10 at 13:00
You're speaking about the black line just below the tabs? – Sephy Aug 18 '10 at 13:47
Yes. Even if I put something between FrameLayout and TabWidget this line will be on the FrameLayout. – Orsol Aug 20 '10 at 7:56
1  
I think this have somethin to do with Android styles maybe like a shadow or something they are adding, but I don't know where to look – Sephy Aug 20 '10 at 9:04
feedback

Unfortunately you can't get rid of it. This is a result of how the TabWidget is implemented. Internally the TabWidget is an ActivityGroup and the contents of each tab is its own Activity.

link|improve this answer
feedback

What I suggest you is to use the library provided by GrreenDroid: http://android.cyrilmottier.com/?p=274

Just have a look at The GDTabActivity, you will be able to tweak everything and get rid of this Bar.

http://android.cyrilmottier.com/medias/actionbar/action_bar_4.png

link|improve this answer
This do not solve the problem. This is my result yfrog.com/n8devicewp – Orsol Aug 25 '10 at 15:10
You have just to edit the PNG files. That seem not complicated... – Profete162 Aug 25 '10 at 16:02
feedback

Your Answer

 
or
required, but never shown

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