So the footer is the same for all tabs?
In that case, I would set for the TabActivity a custom layout that
contains the footer.
Something like this:
<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="1dip">
<TabWidget android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_weight="0" />
<FrameLayout android:id="@android:id/tabcontent"
android:layout_width="fill_parent" android:layout_height="0dip"
android:layout_weight="1"/>
<ImageView android:id="@+id/Logo"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:src="@drawable/
nexsoftware" android:background="#FF000000"
android:scaleType="fitCenter" />
</LinearLayout>
</TabHost>