在 ViewFlipper 中按需进行工作
我想在 ViewFlipper 中显示某个视图时加载 URL。如何确定正在显示 X 视图,以便我可以执行 URL 下载逻辑?
I want to load a URL when a certain view in my ViewFlipper is shown. How can I determine that X view is being shown, so I can perform the URL downloading logic?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
getDisplayedChild()
方法;它返回一个整数,表示显示视图的以零为基数的索引。如何处理该索引取决于您。Use the
getDisplayedChild()
method; it returns an integer which represents the base-zero index of the displayed view. What to do with that index is up to you.