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:button 构建一个井字游戏应用程序。现在我正在考虑设计它的最佳方法,因为我不确定如何检测彼此相邻的按钮。现在我有硬编码的东西,我如何检测按钮是否彼此相邻?
将 id 与行/列主要模式/二维按钮数组一起使用,这使得很容易确定相邻的按钮,例如 (3x3) :
00 01 02 10 11 12 20 21 22
或者
00 10 20 01 11 21 02 12 22
这是一个完整的示例:井字游戏,也可以看看井字游戏 2