当前位置:操作系统 > 安卓/Android >>

Android - 保持在底部的按钮栏,上面是滚动的ScrollView

这里要用到相对布局,在ScrollView里放置自己的内容views
 
<?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="fill_parent"> 
    <LinearLayout  
        android:id="@+id/buttonLayout" 
        android:layout_alignParentBottom="true" 
        android:layout_height="wrap_content" 
        android:layout_width="fill_parent" 
        android:orientation="horizontal"> 
        <Button  
            android:text="AAAA" 
            android:layout_height="wrap_content" 
            android:layout_width="fill_parent" 
            android:layout_weight="1"/> 
        <Button  
            android:text="BBBB" 
            android:layout_height="wrap_content" 
            android:layout_width="fill_parent" 
            android:layout_weight="1"/> 
    </LinearLayout> 
    <ScrollView  
        android:layout_above="@id/buttonLayout" 
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent"> 
    </ScrollView> 
</RelativeLayout> 

作者:颜

补充:移动开发 , Android ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,