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.
我正在努力创建一个栏,用户可以在其中从按钮列表中选择一个选项,这些按钮包含在水平线性布局中,其中每个按钮都代表一个可选择的选项。
以下是我要复制的内容。
| 已选择 | 灰色 | 灰色 | 灰色 |
我应该使用什么控件,我将如何配置它,以便在给定时间只能选择一个选项?
提前致谢!
我认为你可以简单地使用按钮,使用 Button.setEnabled(boolean)。认为您可以根据所选的状态更改其他状态。
方法一
您可以使用单选组并在其中放置 4 个单选按钮。它将一次显示 1 个选择。您还可以轻松自定义单选按钮。
或者
方法二
只需使用 4 个按钮,当用户选择其中一个按钮时,您可以禁用其他按钮。