在 Android 的布局上播放短的 .wav
在android中,我有一个View Flipper,上面有一个孩子,我想在有时访问它时播放一个简短的.wav(基本上是随机的)。
当用户访问 xml 布局时,是否有一种快速、简单的方法来播放该 wav?
我有一个带有很多方法的主类,所以我不能真正将它放在 onCreate 中...布局页面是根据用户单击按钮时显示的 - 并且它全部位于视图 Flipper 上的线性布局中
谢谢!
In android, I have a View Flipper that has a child on it that I would like to play a short .wav on when it is accessed some of the time (basically on random).
Is there a quick and easy way to play that wav right when the xml layout is accessed by the user?
I have a main class with a bunch of methods, so I can't really place it in onCreate...the layout page is shown based on when the user clicks a button - and it is all in a Linear Layout on a view Flipper
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当视图翻转器“翻转”到该视图时,您可以播放声音。像这样的东西:
You can play the sound when the view flipper "flips" to that view. Something like: