我有一个简单的表格和一个scrollView
用于滚动的TableRow
. 我还添加了页脚,问题是我需要知道页脚的大小,以便我可以将其提供android:layout_marginBottom="<size of footerbar>
给我的滚动视图。那么如何获得页脚栏布局的高度?请帮我。
这是我的页脚代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/btnColor"
android:orientation="horizontal" >
<Button
android:id="@+id/previous"
style="@style/pagingBarBtnAttr"
android:layout_alignParentLeft="true"
android:background="@drawable/choose_color_btn"
android:drawableLeft="@drawable/previous"
android:text="Previous" />
<TextView
android:id="@+id/pageNo"
style="@style/pagingBarBtnAttr"
android:layout_centerHorizontal="true"
android:text="Page No. 1" />
<Button
android:id="@+id/next"
style="@style/pagingBarBtnAttr"
android:layout_alignParentRight="true"
android:background="@drawable/choose_color_btn"
android:drawableRight="@drawable/next"
android:text="Next" />
现在因为下一个和上一个按钮有一个drawable,所以他们有根据设备大小的drawable,所以页脚栏没有固定的高度值,所以我怎样才能得到它的高度,这样我就可以将该值提供给margin_bottom
of scrollview
。提前致谢..