is it possible to put banner below tab host and in that banner there are two buttons and i want to access that two button from currently visible activity???
for example there are two xml file one is tab-host and another one is activity xml file. In tab-host xml file i have written code like this
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1" />
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0" />
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/seekBar1"
android:background="#FFB5C5"
android:gravity="center_horizontal"
android:marqueeRepeatLimit="marquee_forever"
android:singleLine="true"
android:text="No track info available..."
android:textColor="@android:color/black" />
</LinearLayout>
now if i want to put banner below tab host i have to write code in this file for that banner…
now but the main problem is that in banner there is two button which is accessing by the activity which has
setContentView(R.layout.activity);
not
setContentView(R.layout.tabhost);
so i will not access banner from
setContentView(R.layout.activity);
so can anybody suggest me how to do that thing
below is image

u can see that banner is below from tab host
and now i want to access banner from first activity….. o
You can do something like that.
By above explaination you can able to see the Banner only or your desire Activity and also achieve the click of the button from that activity.
Hope you got my point.
feel free for any comments.