My main activity is a TabActivity
, but my tabs don't require icons. I know I can omit the icon by using the overloaded TabHost.TabSpec.setIndicator(CharSequence label)
method, as answered in this question.
But the space where the icon would go is still reserved, so a lot of space is wasted. This has already been remarked in this question. It seems I can't just reduce the tab height. I'll have to supply my own View
with the TabHost.TabSpec.setIndicator(View view)
overload.
Fine, but I want to make sure the rest of the styling (background/coloring) remains consistently 'android' across all devices, just as if I'd used a default tab indicator. So I don't want to supply my own colors.
I've found @android:color/tab_indicator_text
and using it for the TextView
s text-color seems to work as expected. But I don't know where to get the default tab-background-colors. I've also discovered the @android:style/Widget.TabWidget
style, but applying it to neither the TextView
nor the surrounding LinearLayout
seems to help.
This is my tab indicator view xml file, taken from some tutorial:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tabLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:padding="12dip" >
<TextView
android:id="@+id/tabText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/tab_indicator_text" />
</LinearLayout>
How do I get 'android default' tab styling on this?
Edit: Next, I tried to add a default tab through setIndicator(CharSequence)
, take the getBackground
drawable of its indicator view, clear all tabs, add my custom views (see above), then put the drawable I retrieved in setBackground
for the new indicators.
The result looks sort of right and sort of wrong. For one, they're too high again, so I gained nothing. For another, the background states of all tabs are now linked somehow (active, highlighted, selected, etc.). Using mutate()
on the drawable(s) didn't help at all. Next trick: I added three default tabs, took all of their backgrounds, cleared them, and gave my own three tabs one background each.
Well, that solves the second problem. Their states are no longer linked. But they're still too high. So I reduced the height of the TabWidget
using updateViewLayout
. This works, but leaves a discolored bar at the top of the tab indicators.
Actually, I just end up with the same situation as when using the TabHost.TabSpec.setIndicator(CharSequence label)
method. And anyway, all these hacks make me feel dirty. Isn't there an elegant way to get default android styling on a custom view?