大马资讯论坛 - 马来西亚中文资讯平台
标题:
[教学]android ScrollView遮挡其他控件ScrollView overlapping buttons
[打印本页]
作者:
资讯王
时间:
2012-7-8 22:41
标题:
[教学]android ScrollView遮挡其他控件ScrollView overlapping buttons
[教学]android ScrollView遮挡其他控件ScrollView layout overlapping footer buttons。
在activity_main.xml,只需加个LinearLayout,然后把button放进里面即可实现footer。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ScrollView
android:id="@+id/scrllvwNo1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/LinearLayout01" >
<TableLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="0,1"
android:id="@+id/maintable" >
</TableLayout>
</ScrollView>
<LinearLayout
android:id="@+id/LinearLayout01"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_alignParentBottom="true">
<Button
android:id="@+id/btnGetMoreResults"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0"
android:text="Get more">
</Button>
</LinearLayout>
</RelativeLayout>
复制代码
欢迎光临 大马资讯论坛 - 马来西亚中文资讯平台 (http://freeinfo.com.my/)
Powered by Discuz! X3.3