[android-developers] Re: android.provider.Contacts.PeopleColumns.PHOTO_VERSION

2009-02-18 Thread bubble.vnhan
hihih! this is bug which in AndroidSourceCode is not support about column PHOTO_VERSION of People ContentProvider. there is definition column PHOTO_VERSION, but don't creat it as below sourcode. So that this Column is not exist and idxPhoto get value -1. // Create the common people columns

[android-developers] Re: Launching activity within an apk file thorough intent

2009-02-17 Thread bubble.vnhan
hihi! behavior of design is no problem, but just only that, you seted incorrect Intent_Flag. you should set Intent_Flag as below: intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); if you set it, you want behavior that is correct.

[android-developers] Re: How to navigate from HOME back to a paued Task?

2009-02-12 Thread bubble.vnhan
Hi all! Order to obtain such above Actribute of Activity, in file Manifest we should add android:finishOnTaskLaunch =true into Tagactivity. After that you can bring Task which after press HOME button, to foreground. Notes: I use Emulator SDK_1.1v.1; V.Nhan!! On 1月21ζ—₯, 午後11:16, kolby

[android-developers] Re: Audio Streaming with Media Player

2009-02-08 Thread bubble.vnhan
Hello!!! this source code is no problem! but just only Url is incorrect. mp.setDataSource(http://asx.skypro.ch/radio/internet-64/ drs3.asx); you should choice correct Url ( for down load file). mp.setDataSource(http://amnhac.timnhanh.com/player/getsong/down

[android-developers] Re: Problem with audio recording

2009-02-06 Thread bubble.vnhan
You shout creat new MediaRecorder one time, so that you shout creat new MediaRecorder() inside part of buttonRecorder. And also, you shout use method audioRecorder.stop(). if you correct 2 issue above, you will fix this bug. if(v==buttonRecording){ audioRecorder