如何使用viewflipper将变量从一个活动传递到另一个活动?
我的应用程序包含 2 个屏幕,其中一个屏幕有一些文本框,单击后文本框中的值应传递到下一个屏幕。我已经使用意图完成了它,但我想使用 viewflipper 来实现滑动效果。谁能告诉我如何使用 viewflipper 将值从一个视图传递到另一个视图?
My app contains 2 screens, one having some textboxes on click of which the value in the textbox should be passed to next screen. I have done it using intent, but I want to use viewflipper for sliding effect. Can anyone tell me how to pass value from a view to another using viewflipper?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于 viewflipper 属于一个活动,您可以将值存储在活动的私有字段中,然后在翻转事件上读取另一个视图。
As viewflipper belongs to one activity you can just store the value in private field of the activity and then read it another view on flip event.
使用
ViewFlipper
时仅使用一个Activity
。Use only one
Activity
when using aViewFlipper
.