height - TabHost on Facebook for Android -
anyone know how facebook did this: know cannot change height of tabhost. i'm guessing laid "frank cho" view on tabhost give appearance of being shorter may wrong. know what's going on? you can have custom looking tab widgets. need set tab indicator custom layout (with drawables) , should go. here's semi-example: final tabhost host = gettabhost(); final textview indicator = (textview) getlayoutinflater().inflate( r.layout.tab_indicator, gettabwidget(), false); indicator.settext("tab title"); host.addtab(host.newtabspec("the tab tag") .setindicator(indicator) .setcontent([put content here])); } where tab_indicator layout can this: <textview xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/tab_label" android:layout_width="0dip" android:layout_height="fill_parent...