带有2个按钮的ScrollView固定在底部

时间:2013-08-29 18:34:19

标签: android xml scrollview relativelayout

我只知道如何修复RelativeLayout底部的两个按钮。但问题是小显示器看不到所有内容,所以我想要一个scrollLayout而且还有一个相对布局,所以每次都有两个按钮位于显示屏的底部。有谁知道如何实现它? 非常感谢:)

1 个答案:

答案 0 :(得分:1)

试试这样:

  <LinearLayout>
        <ScrollLayout>
            <RelativeLayout>
                Your content here
            </RelativeLayout>
        </ScrollLayout>
        <RelativeLayout>
            Your two buttons here
        </RelativeLayout>
  </LinearLayout>