27 lines
814 B
XML
Executable file
27 lines
814 B
XML
Executable file
<?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="match_parent"
|
|
android:layout_height="wrap_content" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" >
|
|
|
|
<TabWidget
|
|
android:id="@android:id/tabs"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="66dip"
|
|
android:gravity="top" >
|
|
</TabWidget>
|
|
|
|
<FrameLayout
|
|
android:id="@android:id/tabcontent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" >
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
|
|
</TabHost>
|