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.
使用 android xml,假设我有一个带有按钮行的表格布局。有没有办法改变一个按钮的按钮高度来填充两行?例如,我想要一个右侧带有“等于”按钮的计算器,其高度是许多简单计算器中的两倍。
TableLayout 仅支持列跨越,不支持行跨越,因此在这种情况下,您需要将表格嵌套在另一个布局中,并在外部布局中添加等号按钮。例如,您可以使用水平 LinearLayout 作为外部布局。