Samples
Samples
TabbedApp
Language: Oxygene, Platform: Cooper, Category: Android
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/Cooper/Android/TabbedApp
-
org.me.tabbedapp
-
References
- android
- Source Files
-
Other Files
- res\values\strings.android-xml
- res\layout\main.layout-xml
- Properties\AndroidManifest.android-xml
- res\drawable-hdpi\icon.png
- res\drawable-mdpi\icon.png
- res\drawable-ldpi\icon.png
- res\drawable\ic_tab_one_grey.png
- res\drawable\ic_tab_one_white.png
- res\drawable\ic_tab_one.android-xml
- res\drawable\ic_tab_three.android-xml
- res\drawable\ic_tab_three_grey.png
- res\drawable\ic_tab_three_white.png
- res\drawable\ic_tab_two.android-xml
- res\drawable\ic_tab_two_grey.png
- res\drawable\ic_tab_two_white.png
-
References
res\layout\main.layout-xml
<?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="5dp">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" />
</LinearLayout>
</TabHost>
