[android-developers] Using mediaplayer class over HTTPS?

2009-05-13 Thread David Liu
Is there any way to get the MediaPlayer class to play files streamed over HTTPS? The project I'm currently working on was working while we used HTTP only, but when we started using HTTPS instead, we found that doing the same thing with MediaPlayer over HTTPS will cause it to do nothing. Is there

[android-developers] Re: Audio streaming/progressive download over HTTP

2009-05-11 Thread David Liu
I'm currently using the MediaPlayer class to play some files. However, it seems that whenever I seek back and forth, it needs to re-download and buffer parts it has already played. Is this what you mean by no progressive download yet? On Apr 14, 2:56 pm, Dave Sparks davidspa...@android.com

[android-developers] Re: How to get the handle for one pop-up dialog?

2009-03-25 Thread david liu
Can anyone give me a hand? On Tue, Mar 24, 2009 at 10:19 PM, david liu wanqing.da...@gmail.com wrote: Hi All, Here I have one question about I want to get the handle for one popup dialog, such as, there is one Delete alertDialog pop up when you want to delete one picture. So could anyone

[android-developers] How to get the handle for one pop-up dialog?

2009-03-24 Thread david liu
Hi All, Here I have one question about I want to get the handle for one popup dialog, such as, there is one Delete alertDialog pop up when you want to delete one picture. So could anyone have the good idea about this? Thanks, David --~--~-~--~~~---~--~~ You

[android-developers] Which version of source codes is CupCake? When will it release?

2009-03-03 Thread david liu
I saw some people mentioned CupCake in the email threads, could anyone talk in details? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: crash in com.android.camera after calling Images.Media.insertImage

2009-03-02 Thread david liu
Similar error is happened. Could anyone help? On Tue, Feb 24, 2009 at 9:22 AM, Freddy f...@charter.net wrote: I'm running android sdk v1.1-r1 testing with a T-Mobile G1 device HT841GZ04082. I have a jpg on the sdcard that I want to add to the photo viewer. I do this quite simply with the

[android-developers] Re: Cannot sync Calendar with Google Calendar service on emulator

2009-02-22 Thread david liu
Hi Johnson, Could you please tell me how to configure the username and pwd for the Google Service Login on the emulator? Thanks very much, David On Sat, Feb 21, 2009 at 1:15 AM, Johnson haojies...@gmail.com wrote: Hi, I run the 1.0r1 emulator and install Calendar.apk and CalendarProvider.apk

[android-developers] Re: After install ADT0.9,failed to launch APP as no VM compatible with android 1.5

2009-02-20 Thread david liu
You need create one vm firstly, then launch emulator with that vm. On Thu, Feb 19, 2009 at 10:26 PM, harry ha...@mailinator.com wrote: Same issue here. Cannot launch VM with ADT0.9.0 plugin, nor is hardware device recognized. I had a look at AndroidLaunchController.java and tried to patch

[android-developers] Re: getAssets().open(file.txt)

2009-02-19 Thread david liu
Can you paste the log here? On Thu, Feb 19, 2009 at 6:31 PM, zeeshan genx...@gmail.com wrote: i am trying to access a resource file by try { InputStream is = getAssets().open(read_asset.txt); int size = is.available(); byte[] buffer = new byte[size];

[android-developers] Re: add files to data/data folder of android phone

2009-02-19 Thread david liu
I can create it, there is no permission for this one. On Thu, Feb 19, 2009 at 6:26 PM, Munish munish.sha...@lntinfotech.comwrote: Hi I tried to access the data from data/data folder from emulator memory and it worked fine but when i created the same structure in android phone then 1). it

[android-developers] Re: Android 1.1_r1 SDK released and developer.android.com launched

2009-02-19 Thread david liu
I just saw one email about this, there is one fix you can download from http://developer.android.com/sdk/download.html?v=android-sdk-windows-1.1_r1.zip I cannot download it, since the problem with my network, hope you can get it. On Thu, Feb 19, 2009 at 5:27 AM, E. Litwin elit...@rocketmail.com

[android-developers] Re: Using android 1.5 emulator, the sdcard can't be mounted

2009-02-19 Thread david liu
I have another issue about I cannot see the pictures in the Gallery immediately after I push some pictures to sdcard. Is anyone have fix for this? Thanks, David On Wed, Feb 18, 2009 at 3:59 PM, PYJ peiyuji...@gmail.com wrote: You can try 'adb remount' command before push and pull some files.

[android-developers] Is there one way to access http://developer.android.com from China MainLand

2009-02-19 Thread david liu
Hi All, I want to access this web site and download the latest SDK for my development. Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: problem in deleting Call Log

2009-02-18 Thread david liu
There are three paremeters for delete(delUri,null,null), I think the first one is about the table which you want to operate, the second is Where clause, here you need put the selecting condition (such as, rowId = 2), the third one we can use null. You also can refer to the instruction of this