android-calculatorpp/android-app/res/layout/tabs.xml

30 lines
729 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (c) 2009-2011. Created by serso aka se.solovyev.
~ For more information, please, contact se.solovyev@gmail.com
~ or visit http://se.solovyev.org
-->
<TabHost xmlns:a="http://schemas.android.com/apk/res/android"
2013-06-14 16:31:49 -04:00
a:id="@android:id/tabhost"
a:layout_width="fill_parent"
a:layout_height="fill_parent">
2013-06-14 16:31:49 -04:00
<LinearLayout
a:orientation="vertical"
a:layout_width="fill_parent"
a:layout_height="fill_parent">
2013-06-14 16:31:49 -04:00
<TabWidget
a:id="@android:id/tabs"
a:layout_width="fill_parent"
a:layout_height="wrap_content" />
2013-06-14 16:31:49 -04:00
<FrameLayout
a:id="@android:id/tabcontent"
a:layout_width="fill_parent"
a:layout_height="fill_parent" />
2013-06-14 16:31:49 -04:00
</LinearLayout>
</TabHost>