我只知道如何修复RelativeLayout底部的两个按钮。但问题是小显示器看不到所有内容,所以我想要一个scrollLayout而且还有一个相对布局,所以每次都有两个按钮位于显示屏的底部。有谁知道如何实现它? 非常感谢:)
答案 0 :(得分:1)
试试这样:
<LinearLayout>
<ScrollLayout>
<RelativeLayout>
Your content here
</RelativeLayout>
</ScrollLayout>
<RelativeLayout>
Your two buttons here
</RelativeLayout>
</LinearLayout>