Skip to content

Instantly share code, notes, and snippets.

@artanisdesign
Forked from mattapperson/gist:1621570
Created June 4, 2012 10:11
Show Gist options
  • Save artanisdesign/2867609 to your computer and use it in GitHub Desktop.
Save artanisdesign/2867609 to your computer and use it in GitHub Desktop.
titanium android tabbar DOWN
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="0dp">
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="0dp"
android:layout_weight="1"/>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0"/>
</LinearLayout>
</TabHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment