Here is the structure of the layout of my application:
<LinearLayout>
<TabHost>
<LinearLayout>
<LinearLayout>
<TabWidget />
<FrameLayout />
</LinearLayout>
</LinearLayout>
</TabHost>
</LinearLayout>
The above layout works perfectly. I want to add a textview to show a text in the bottom of the screen. So for showing the text always in the bottom of the screen, I need to create a relative layout.
I have created a RelativeLayout and placed the textview inside the RelativeLayout like this :
<RelativeLayout>
<TextView />
</RelativeLayout>
How can I add this to the original view. I have tried several ways to add but nothing works! :(
My aim is to a show a text in the bottom of the screen. Is there any way to do this using any layout.