2010-09-01 42 views
0

在我的android應用程序中,當列表中沒有項目很小時,頁腳會粘貼到列表的末尾,如下所示。 alt textfooter在android中查看問題

但不到屏幕的末尾。 有沒有什麼辦法可以將它粘到屏幕的底部。 我正在使用單獨的footer.xml,並使用Inflator服務調用它。

請分享您寶貴的建議。

感謝提前:)

回答

0

使用相對佈局並使其與母公司的底部:

<RelativeLayout 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"> 

<YourFooter 
    android:id="@+id/SomethingSomething" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true" /> 



</RelativeLayout> 
+0

Thanks.Now其工作 – Remmyabhavan 2010-09-01 14:06:49