以编程方式设置按钮的边距
我是 android 新手,陷入了一个非常基本的问题。我正在开发一个应用程序,其中我需要在 fling 上滑动图像。在每个图像上,我必须动态添加按钮。我正在使用 AddContentView() 添加按钮来添加按钮一切工作正常,但我想动态设置按钮的位置。我读过很多地方,每个人都在使用 addView() 来添加按钮并设置它们的位置。我已经尝试过这个,
但它不起作用。任何人都可以吗请告诉我如何设置使用 addContentView() 按钮的边距(位置)。任何帮助将不胜感激。
I am new to android and stuck in a very basic problem.I am working on an application in which I need to swipe images on fling.On every image I have to add buttons dynamically.I am adding buttons using AddContentView() to add buttons.Everything is working fine but I want to set the position of buttons dynamically.I have read at many places,everyone is using addView() to add buttons and setting their positions.I have tried this
but it isn't working.Can anyone please tell me how to set the margins(position) of button using addContentView().Any help would highly be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 addView 设置按钮边距对我有用。确保将正确的 LayoutParams 对象传递给应保存按钮的 ViewGroup。
应该有效。
Setting a buttons margin using addView works for me. Be sure to pass the right LayoutParams object to the ViewGroup that should hold your button.
should work.