[android-developers] Re: Send numbers during call

2009-11-16 Thread Stoffe
open source project called SipDroid ( http://sipdroid.org/ ) with GPLv3 that you might test to play around with. But because of the license in might or it might not be viable for your purpose. BR Stoffe On Nov 8, 6:03 am, Roland Heimdahl buu...@gmail.com wrote: Hi! I'm going to write a simple

[android-developers] Re: AudioTrack usage with streaming data in native code

2009-11-16 Thread Stoffe
Hi! It all depends on the frequency you set. For 8000 Hz 8 bit PCM, 160 should be good and for 16 bit you should provide the double e.g 320. This is for mono so make sure that you are using the same settings at both ends. //Stoffe On Nov 10, 11:00 pm, Bytes toyvenu.t...@gmail.com wrote: Hi

[android-developers] Re: How to play media via speaker phone

2009-11-16 Thread Stoffe
Hi Hap! Try to use the voice call setting. At least when used on AudioTrack the constants seem to be inverted. AudioManager.STREAM_MUSIC seems to play in the earpiece while AudioManager.STREAM_VOICE_CALL on the speaker. Maybe you are suffering from the same effect. BR Stoffe On Nov 13, 10:02

[android-developers] Re: Help! Trying to get Basic Auth working with WebView. setHttpAuthUsernamePassword?

2009-10-20 Thread Stoffe
then it matters. BR Stoffe On Oct 15, 2:33 pm, Stoffe kristoffer.gronow...@gmail.com wrote: Hi Matt! @Override public void onCreate(Bundle savedInstanceState) {     WebView webkit = (WebView) findViewById(R.id.web_view);     webkit.setHttpAuthUsernamePassword(page.getHost(), realm, username

[android-developers] Re: Help! Trying to get Basic Auth working with WebView. setHttpAuthUsernamePassword?

2009-10-15 Thread Stoffe
Hi Matt! You need to do something like this: @Override public void onCreate(Bundle savedInstanceState) { WebView webkit = (WebView) findViewById(R.id.web_view); On Oct 13, 12:17 am, Croccy22 matthew.bea...@gmail.com wrote: Hi all, I have a WebView in my layout which I want to display a web

[android-developers] Re: Help! Trying to get Basic Auth working with WebView. setHttpAuthUsernamePassword?

2009-10-15 Thread Stoffe
]); } else{ Log.d(WebAuth,Could not find user/pass for domain :+ host+ with realm = +realm); } } }); webkit.loadUrl(page.toString()); BR Stoffe On Oct 13, 12:17 am, Croccy22 matthew.bea...@gmail.com wrote: Hi all, I have