I want to fix a view at the bottom of the screen.How can i do that?
+2
A:
You can create a Relative Layout that covers the whole screen and use layout_alignParentBottom="true"
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
Now the text view should always be at the bottom of the screen.
Janusz
2010-07-23 10:07:50
Thanks a lot...its working
Sujit
2010-07-24 07:54:11