i have an application with various tabs (on a tabhost), each tab is an activity that extends activity, and haves some textfields and things on it
now i need that my tabs have inside a listview, but in the example from android developer guide says that you have to extend ListActivity and not Activity
basically i need to merge these two tutorials:
http://developer.android.com/resources/tutorials/views/hello-listview.html
http://developer.android.com/resources/tutorials/views/hello-tabwidget.html
i want to know how can i use a listview without extending listactivity on my class
someone knows?
MY XML FILE:
<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>
