2010-07-23 5 views

Répondre

4

Vous pouvez créer une mise en page relative qui couvre tout l'écran et utiliser 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> 

maintenant le point de vue du texte devrait toujours être au bas de l'écran.

+0

Merci beaucoup ... son travail – Sujit

Questions connexes