在Android中如何实现这个功能呢?
我想在触摸 1,0 处的图块时将图块定位 1,0 与图块 1,1 相加,并在图块 1,1 处显示结果。添加操作后,图块 1,0 不应显示任何内容,并且焦点应消失。当我触摸包含图块的值时,焦点应该再次出现。另外,我希望瓷砖能够滑动。在 Android 中执行此操作的最佳方法是什么?这是一个可以更好地理解我的问题的链接 游戏链接
I want to add the value of tile positioning 1,0 with tile 1,1 when on touching the tile at 1,0 and display the result at tile 1,1. After the addition operation the tile 1,0 should display nothing and the focus should disappear. The focus should reappear again when I touch the value containing tiles. Also I want the tiles to be sliding.what will be the best approach to do this in android. Here is a link for better understand my question the game link
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是您正在寻找的内容的完整示例。只需下载源代码并尝试一下,它可能会对您有进一步的帮助。 移动拖动图像
Here is a complete example for what you are looking for. Just download the source and try this it might help you out further. Move & Drag Images
使用 GridView 来实现此目的。这是教程。
use
GridView
for this. Here is tutorial.