首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

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

2012-07-19 
保持在底部的按钮栏,上面是滚动的ScrollView---转?xml version1.0 encodingutf-8?RelativeLayout

保持在底部的按钮栏,上面是滚动的ScrollView---转
<?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> 

热点排行