Android Question Chamando arquivo de som em meu app

MarcioCC

Member
Licensed User
Longtime User
Bom dia Pessoal Seguinte, Como Faço Para Chamar hum Arquivo. wav
ou mp3 no meu app.
Fiz Uma Rotina de retorno o usuario acertar ou errar um problema o app emiti um som.
Como Fazer isso ??
 

ArminKH

Well-Known Member
at first welcome to B4X great comunity
u should to talk with English(not portuguese) language in the public forum
you should ask your question at following forum if u want to talk with your native language
http://b4x.com/android/forum/forums/portuguese-forum.15/
this is translated by google

"good Morning Guys, How Do To Recall a File. wav
or mp3 on my app.
A return made routine the User hit or miss an issue the app send a sound.
How to do this ??"
 
Last edited:
Upvote 0

Guga Thome

Member
Licensed User
Longtime User
Bom dia Pessoal Seguinte, Como Faço Para Chamar hum Arquivo. wav
ou mp3 no meu app.
Fiz Uma Rotina de retorno o usuario acertar ou errar um problema o app emiti um som.
Como Fazer isso ??

Olá,

Para dar play num arquivo wav segue um exemplo. Basta chamar a Sub Emitir_Som()
--------------------------------------------------------
Sub Process_Globals
Private mFileName As String = "temp.wav"
Private mp As MediaPlayer
End Sub
--------------------------------------------------------
Sub Activity_Create(FirstTime As Boolean)

mp.Load(File.DirRootExternal, mFileName) ' Carrega o arquivo para ser usado quando necessário

End Sub
-------------------------------------------------------
Sub Emitir_som()
mp.Play ' Dar Play
End Sub
-------------------------------------------------------
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Upvote 0

Cableguy

Expert
Licensed User
Longtime User
Como foi tão amavelmente referido atras pelo Armin, no forum Geral é obrigatorio utilizar como lingua o Ingles, se necessario, usem uma ferramenta de traducao como o Google translator. Se realmente nao conseguirem utilizar a lingua Inglesa, usem o sub-forum Portugues que foi criado exactamente para isso.

As so gently reminded by Armin, in the general forum, English is the only current language to be used, if needed be, use a translator tool like google translator. If you really must use Portuguese, then use the appropriate sub-forum that was created for this exact purpose.
 
Upvote 0
Top