Android、Tabhost 中的 ViewFlipper 和 GestureDetector
我想制作一个 tabhost,并且想为一项活动添加一个 viewflipper。 此活动适用于 tabhost。 我已经写了,但什么不起作用。有人知道我该怎么做吗?我希望他们明白我想要什么。
我想在此活动中使用 GestureDetector。我可以用按钮更改图片,但用手指却不能。
I wanted to make one tabhost and I wanted to add one viewflipper one activity.
This activity works with tabhost.
I've written but what does not work. Have anybody an idea how can I do that? I hope they understand what I wanted.
I wanted to use in this activitiy of the GestureDetector. I can change the pictures with button but with finger i cant.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我以前做过。 ( https://github.com/vancexu/AimTo/tree/ master/src/com/hackingtrace/vancexu AimToActivity.java)
只需实现您自己的
GestureDetector
,然后在您的选项卡活动中注册一个OnTouchListener
顺便说一句,我还实现了幻灯片动画,使用
ViewFlipper
中的 < code>TabHost我的
TabHostActivity
中的一些代码I have made it before. ( https://github.com/vancexu/AimTo/tree/master/src/com/hackingtrace/vancexu AimToActivity.java)
Just implement your own
GestureDetector
,then in your tab activity register aOnTouchListener
By the way, I also implement the slide animation, using
ViewFlipper
inTabHost
Some code in my
TabHostActivity