Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只知道如何修复RelativeLayout底部的两个按钮。但问题是小型显示器无法看到所有内容,所以我想要一个滚动布局和一个相对布局,这样两个按钮每次都位于显示器的底部。有谁知道如何实现它?非常感谢 :)
试试这样:
<LinearLayout> <ScrollLayout> <RelativeLayout> Your content here </RelativeLayout> </ScrollLayout> <RelativeLayout> Your two buttons here </RelativeLayout> </LinearLayout>