Android动态添加horizontalscrollbar和verticalscrollbar到视图
您好,
我在向视图动态添加水平和垂直滚动条时遇到问题。基本上该应用程序放大和缩小图像。我想每当视图超出范围时动态放置水平和垂直滚动条。即当单击放大并且视图将脱离绑定时,它会自动添加滚动条。我正在使用这两种方法,但它们不能正常工作。
setVerticalScrollBarEnabled(true);
setHorizontalScrollBarEnabled(true);
我是否必须将这些方法放在视图的 onDraw(Canvas canvas) 方法中?
注意:我没有使用 xml 文件创建视图。我正在使用从 View 继承的类创建视图。
谢谢你!!
HI,
I have a problem in dynamically adding horizontal and vertical scrollbar to a view . Basically the application zoom in and zoom out an image. I want to put horizontal and vertical scrollbar dynamically whenever view is out bounds. i.e. when zoom in is click and view is gonna out of bond, then it automatically add scrollbar. I am using these two methods but they didn't work correctly.
setVerticalScrollBarEnabled(true);
setHorizontalScrollBarEnabled(true);
Does i have to put these methods inside onDraw(Canvas canvas) method of the view?
Note: I am not creating view using xml file. I am creating view using a class which is inherited from View.
Thank you!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不完全相同,但这可能会给你一个线索:
not quite the same thing but this may give you a clue: