如何创建android自定义视图?
我的应用程序中有一张图片,可以根据用户的选择分为 6 x 6 或 5 x 5 或 4 x 4 网格。
有人可以告诉我如何创建一个包含各个部分的平铺视图,并且用户应该能够在视图中移动各个部分。
任何帮助将不胜感激。
谢谢。
I have a picture in my app that can be split into 6 x 6 or 5 x 5 or 4 x 4 grib depending on the users selection.
Can someone tell me how to create a tile view that will house the pieces, and the user should be able to move the pieces around the view.
Any help will be greatly appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以查看 拖放将 Demo 放入 API 演示中。
就网格而言,最好的选择可能是 TableLayout,因为 GridView 具有数据的一维视图。
You might check out the Drag and Drop Demo in API Demos.
As far as the grid, your best bet is probably TableLayout, as GridView has a one-dimensional view of your data.
采用框架布局并重写 onDraw 方法
take a frame layout and oweride the onDraw method