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.
我正在尝试做这样的事情:
我应该使用什么布局来做到最好?一些特殊的组合?我正在考虑使用 GridLayout,但我不确定。也许是 LinearLayout(顶部)和 Grid(用于按钮)的组合?
我会在顶部说一个RelativeLayout,因为您可以使用这样的属性,例如:
android:layout_toRightOf="@+id/logo"
这意味着您可以添加彼此相关的所有内容,而不必担心每个项目每一侧的大量填充。
然后我会在底部使用 GridView,以便按钮的布局完全相同。
祝你好运!
我会使用表格布局,以便它可以针对不同尺寸的屏幕正确缩放。