activity 中的浮动图像 - android -
Floating image in an activity - android -
我想创建一个显示在 activity 内容之上的 picture/button,我可以将它移动到屏幕上的任何位置。功能示例:如果我将它移到屏幕左侧附近,我希望在用户放下对象时图像移动到边缘。
您可以使用像DraggableView or you can implement your own onTouch
handling to handle touch events for dragging image view. Here's an article这样的可拖动视图库作为参考。
我想创建一个显示在 activity 内容之上的 picture/button,我可以将它移动到屏幕上的任何位置。功能示例:如果我将它移到屏幕左侧附近,我希望在用户放下对象时图像移动到边缘。
您可以使用像DraggableView or you can implement your own onTouch
handling to handle touch events for dragging image view. Here's an article这样的可拖动视图库作为参考。