[android-developers] Re: how to save a streaming into SD card?

2010-10-09 Thread 097
I'm afraid you can't at app level. On Oct 9, 12:02 pm, Charlie88 charliel...@gmail.com wrote: hi cindy, Do you know how can I save a streaming video from the position the MediaPlayer is currently playing? Because since the streaming is already playing, I assume all the connection is fine.

Re: [android-developers] HTML5 is not working in WebView

2010-10-09 Thread rovi
I would like to first verify my webview have the correct setting. In general, to work with HTML5 what options need to be turn on besides enableJavaScript? Thanks Mark Murphy wrote: On Wed, Oct 6, 2010 at 12:06 PM, rovi rovix...@gmail.com wrote: I wrote several simple HTML5 apps which all

[android-developers] Re: Follow up for the active install count problem

2010-10-09 Thread Doug
On Oct 8, 12:26 pm, TreKing treking...@gmail.com wrote: fabrizio.giud...@tidalwave.it wrote: and maybe the count would fix itself with new upgrades... No. It gets better, but it's not fixed by any means. I pumped out an update shortly after the supposed fix - I've gone up 20% from the lowest

[android-developers] Re: WebView class from android supports xhtml, html4, html5 ?

2010-10-09 Thread 097
As I know, WebView (1.6 or above) supports XHTML and html4. If you merely want to display text mixed with images, you can write a html4 page. Hope it will help you. :-D On Oct 8, 11:09 pm, Lidia lidyp...@yahoo.com wrote: Hello, Does anyone know if the WebView class from android supports

[android-developers] Re: Creating a .jar Library

2010-10-09 Thread Doug
Android project aren't meant to export jars from source code. The documentation makes this clear. They export raw source which gets compiled directly by dependent projects. If you want to add a jar file, I think you'll have to do arrange for Eclipse to pick up a static jar from a different

[android-developers] Re: Anybody experiencing a boost in sales since opening up to other countries?

2010-10-09 Thread JonFHancock
Just curious. Are you all using anything other than the Google Checkout interface to track sales? I'm using a paid app called Android Market Report. It hasn't been particularly great, but it does show the net sales for each day/week/ month.

[android-developers] printing key codes

2010-10-09 Thread nimish khandelwal
hi plz tell me how can i print key codes of keys pressed in phone. actually i want to know which keys are pressed when i run my activity,so i want them to be print. i only find key event class but it is already taking a key codei want to print that key code which is pressed. plz help me

[android-developers] Why doesn't the polygons get filled?

2010-10-09 Thread MobileVisuals
I can draw polygons with canvas.drawVertices, but I can not fill them. I have set Paint.Style.FILL on the paint object,but the polygon doesn't get filled. Why doesn't the polygon get filled? This is my code: mLinePaint2 = new Paint(); mLinePaint2.setARGB(255, 255, 0, 0);

[android-developers] scrollbar image not appearing properly

2010-10-09 Thread kavitha b
Hi All, I am setting a drawable to scrollbar of a list view.But scrollbar image is not appearing properly.It appears strecthed. I tried to use 9 patch image.But still same problem. Anybody ahs used image to scrollbar successfully? Please help. Thanks Kavitha -- You received this message

[android-developers] scrollbar image not appearing properly

2010-10-09 Thread kavitha b
I am setting a drawable to scrollbar of a list view.But scrollbar image is not appearing properly.It appears strecthed. I tried to use 9 patch image.But still same problem. Anybody ahs used image to scrollbar successfully? Please help. Thanks Kavitha -- You received this message because you

[android-developers] Re: Unable to sign jar

2010-10-09 Thread Ali Chousein
It seems that it's a bug in Eclipse. I use 3.5. Besides the corrupted apk, my eclipse started behaving quite weird (like remembering the contents of the manifest file of a project I removed and also erased from my hard disk). Anyway, I erased the instance of eclipse from my hard drive,

[android-developers] Re: how to send data to server while recording

2010-10-09 Thread ko5tik
Here is my inspiration source: http://www.mattakis.com/blog/kisg/20090708/broadcasting-video-with-android-without-writing-to-the-file-system -- 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] Android Build System

2010-10-09 Thread B U J J I
Hi All, Can anybody give me some idea how build is happening in Android. Its a huge one to go through by each and every make file. I want remove many of the components and add few more ... I want to know clearly that how build(not how build) meas steps happeing inside build by makefiles wise...

Re: [android-developers] Is it possible

2010-10-09 Thread Rocky
yes, it will work fine On Sat, Oct 9, 2010 at 8:27 AM, Jatin D Patel depo.ja...@gmail.com wrote: I have developed an android app which calls the web service which runs smoothly on my emulator. Will the same appl work if i installed the same application on android mobile device and call the

Re: [android-developers] Re: where to browse the source code of Android

2010-10-09 Thread Mark Murphy
On Sat, Oct 9, 2010 at 12:32 AM, cindy ypu01...@yahoo.com wrote: one more silly question, if I know I want to view a class, such as MediaPlayer, how could I find it for those git files? Oh, for that, I tend to go to Google Code Search: http://www.google.com/codesearch Add package:android to

[android-developers] Re: Unable to sign jar

2010-10-09 Thread DanH
It might have worked out to just clean your app. On Oct 9, 3:43 am, Ali Chousein ali.chous...@gmail.com wrote: It seems that it's a bug in Eclipse. I use 3.5. Besides the corrupted apk, my eclipse started behaving quite weird (like remembering the contents of the manifest file of a project I

[android-developers] Re: How to convert xml to svg in Android

2010-10-09 Thread DanH
Isn't svg based on xml ? From what little I understand, yes. Examine the file with a source browser and see if it looks OK. On Oct 8, 11:01 pm, 大风 jindafeng2...@gmail.com wrote: Now I just parse the svg file the same way as xml file , in order to get some information and the draw the picture

Re: [android-developers] What's on earth the SAX Parser changes between 2.1 and 2.2

2010-10-09 Thread Jun Jiang
Thanks, frank, I have found the cause of my problem, you can refer my blog post for more detail: http://mmmyddd.freeshell.net/blog/Computer/Android/saxcompatibility On Thu, Oct 7, 2010 at 11:58 PM, Frank Weiss fewe...@gmail.com wrote: The bug report sheds no more light on the problem than you

[android-developers] AppWidget on receive method and documentation

2010-10-09 Thread arnouf
Hi, I use an AlarmManager to refresh my widget view (the view not the data displayed which are managed by the standard updatePeriodMillis). The AlarmManager is configured to work with RTC. The documentation indicates : Set the alarm type to either ELAPSED_REALTIME or RTC, which will only deliver

[android-developers] Re: Trouble with Shared Prefs.

2010-10-09 Thread JoelDuggan
Thank you very much. That makes perfect sense. I'll give it a try later. On Oct 8, 6:46 pm, Kostya Vasilyev kmans...@gmail.com wrote: Don't call edit() multiple times. Every call to edit() creates a new change session, so you're changing the value but not committing the change, and then

Re: [android-developers] AppWidget on receive method and documentation

2010-10-09 Thread Mark Murphy
Override onStartCommand() or onStart() in your AppWidgetProvider and figure out what Intent is being used to update the AppWidgetProvider. That should help you narrow down the source (your alarm or the built-in updatePeriodMillis alarm). On Sat, Oct 9, 2010 at 10:45 AM, arnouf

[android-developers] Re: how to save a streaming into SD card?

2010-10-09 Thread Charlie88
hi 097, which task do you mean I can't do at app level? Charlie On Oct 9, 2:22 pm, 097 sphinxdw...@gmail.com wrote: I'm afraid you can't at app level. On Oct 9, 12:02 pm, Charlie88 charliel...@gmail.com wrote: hi cindy, Do you know how can I save a streaming video from the position

[android-developers] How to get .apk create date

2010-10-09 Thread jb
Hi, Is there an api to programmatically get the .apk create date/time? Thanks, jb -- 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@googlegroups.com To unsubscribe from this group,

[android-developers] Re: ListSelector on GridView

2010-10-09 Thread Buddy
Hi, Did you get a solution ? I have the same problem... Thanks, Antoine On 25 août, 05:42, fr4gus fggar...@gmail.com wrote: Hi all, I'm trying to use a custom listSelector on aGridView. When I use the default listSelector, I see that it modifies the size of my items so the listSelector

[android-developers] Problem setting focus

2010-10-09 Thread John Gaby
I have an app where the user is entering some data via an EditText control. This is done by alternating between 2 pages each of which obtains one piece of data. When I start, I create the first page and make it active by calling the setContentView for the activity. I also set the focus into the

[android-developers] Transaction Mechanism

2010-10-09 Thread Tez
Hi, Is there any article/paper that describes the transaction mechanism, why it is needed and how it works? eg: the ActivityManagerService class -E -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Transaction Mechanism

2010-10-09 Thread Mark Murphy
On Sat, Oct 9, 2010 at 1:36 PM, Tez earlencefe...@gmail.com wrote: Is there any article/paper that describes the transaction mechanism, why it is needed and how it works? eg: the ActivityManagerService class There is no ActivityManagerService class in the Android SDK. If your questions are

[android-developers] Re: Anybody experiencing a boost in sales since opening up to other countries?

2010-10-09 Thread Tom / HyperBees
@Jon You could give mopapp.com a try. They use Checkout API to get the data and present it in a very Analytics-like way. The service is in beta, I'm testing it at the moment. My first impression is they are quite accurate (I'm about to start data validation) and analytical tools are good. Support

[android-developers] Re: How to get .apk create date

2010-10-09 Thread Bret Foreman
PackageManager.getPackageInfo -- 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@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: No Texting While driving .....

2010-10-09 Thread Bret Foreman
Simply put, you want to find velocity, v. From the accelerometer you can get dv/dt, which you can integrate to get v. From the GPS you can get the location, x, and dx/dt is also v. So you have two versions of v, one that is fast but tends to drift (from the accelerometer) and one that is slow but

[android-developers] Market misery !!

2010-10-09 Thread Yahel
I am so upset !! It is not enough that the just-in category is flooded by bigboobs finders crap-apps all the time so that the exposition time of any decent app is a mere couple of hours but now after patiently waiting a week before launching my new update, it does not even appear in the just-in

Re: [android-developers] Market misery !!

2010-10-09 Thread Fabrizio Giudici
On 10/9/10 20:46 , Yahel wrote: I'm promoting my app all I can on my blog, myspace, facebook, twitter, tumblr and all, but the best exposition tool should normally be the market !! Don't expect that. The market is just an easy way for people to install your app, but the critical promotion

[android-developers] Re: Bluetooth Service registration in Android

2010-10-09 Thread Ajmer Singh
Hi All Anybody please respond to my question about the bluetooth service registration and connection with the Bluegiga access server. On Fri, Oct 8, 2010 at 12:10 PM, Ajmer singh ajmer.si...@evontech.comwrote: Hi I am working on a Android app that require a Bluetooth Access Server that try

[android-developers] Re: Market misery !!

2010-10-09 Thread JP
On Oct 9, 11:46 am, Yahel kaye...@gmail.com wrote: I am so upset !! You must be new here. but the best exposition tool should normally be the market !! As Fabrizio indicates, not any longer. Same applies to iTunes store, we hear. That's why you see publishers/devs move away from native to

[android-developers] Re: No Texting While driving .....

2010-10-09 Thread Lance Nanek
The Location object returned by the GPS location service often has a speed property set on it as well. On Oct 9, 2:41 pm, Bret Foreman bret.fore...@gmail.com wrote: Simply put, you want to find velocity, v. From the accelerometer you can get dv/dt, which you can integrate to get v. From the GPS

Re: [android-developers] AppWidget on receive method and documentation

2010-10-09 Thread Kostya Vasilyev
2Mark: Ummm. AppWidgetProvider is a subclass of BroadcastReceiver, not Service. As such, it has no onStartCommand or onStart. You're probably thinking of onReceive - ditto for that. 2Arnouf: Another reason might be that something else is keeping the device awake. Might be worthwhile

Re: [android-developers] Re: Market misery !!

2010-10-09 Thread Kostya Vasilyev
I also had a very unpleasant experience today while uploading the latest update to my application. Here is my app: http://www.cyrket.com/p/android/org.kman.WifiManager/ And this is well, something else: http://www.cyrket.com/p/android/cn.wangmeng.wifi/ The similarity is striking: same

[android-developers] Re: Slow initial showing/drawing of Activities when using own Theme

2010-10-09 Thread Streets Of Boston
Thank you Dianne, I'll make sure to use the inheritance. But why is it so much faster when not inheriting, not using 'parent=android:Theme'? When using style-inheritance properly: In the beginning i also thought that my code was the slow part in starting up and preventing a quick initial drawing

[android-developers] Re: Market misery !!

2010-10-09 Thread Lance Nanek
Some of the companies I've seen move away from writing full native apps still get listed in the app stores by writing a launcher app. The launcher app just shows the web site in a WebView and lets them get listed in the app stores. On Oct 9, 4:00 pm, JP joachim.pfeif...@gmail.com wrote: On Oct

Re: [android-developers] Re: Slow initial showing/drawing of Activities when using own Theme

2010-10-09 Thread Mark Murphy
You could try Traceview and see where the time is going: http://developer.android.com/guide/developing/tools/traceview.html On Sat, Oct 9, 2010 at 5:32 PM, Streets Of Boston flyingdutc...@gmail.com wrote: Thank you Dianne, I'll make sure to use the inheritance. But why is it so much faster

Re: [android-developers] Re: Market misery !!

2010-10-09 Thread Tom Gibara
It's been a while since i read the Developer Distribution Agreement, but I'm pretty sure that is this explicitly forbidden in the Android Market. Of course, whether it's enforced (or even enforcible) is another matter. Tom. On 9 October 2010 22:32, Lance Nanek lna...@gmail.com wrote: Some of

[android-developers] Re: Exception every time I launch the application

2010-10-09 Thread Pankaj
Ya I got that much from the exception, But in which XML ? I could not figure that out that is why I have provided the xml files On Oct 9, 4:00 am, DanH danhi...@ieee.org wrote: Speak of the devil! (Just had this problem myself.)  Read carefully the first few lines in yourexceptionstack:

Re: [android-developers] Re: Exception every time I launch the application

2010-10-09 Thread Kostya Vasilyev
I would guess it's the first one, and might be caused by having the namespace declaration on the inner linear layout. You only need the xmlns at the top level. If this doesn't help, look for a layout XML file with missing size around line 25, as the message indicates. -- Kostya Vasilyev --

[android-developers] Re: Tutor for project

2010-10-09 Thread Ed
Hit youtube. There's heaps of good tutorials/presentations on there ranging from hello world to Romain Guy's List View lectures. Ed On Oct 8, 5:31 am, Mike karl mike.d.k...@gmail.com wrote: Looking for some teaching on a simple calculator app please send rates to mike.d.k...@gmail.com should

[android-developers] Audio in a call

2010-10-09 Thread mohammad Rukab
I want to run audio in call duration, which hear from both sides, is there any way to do this ??? please help me -- 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@googlegroups.com To

Re: [android-developers] Audio in a call

2010-10-09 Thread Mark Murphy
On Sat, Oct 9, 2010 at 8:02 PM, mohammad Rukab mohammad.ru...@gmail.com wrote: I want to run audio in call duration, which hear from both sides, is there any way to do this ??? Not really. My understanding is that if the device is in speakerphone mode, you can mux in audio that will be heard

[android-developers] Re: Exception every time I launch the application

2010-10-09 Thread DanH
This exception doesn't occur until the problem layout is actually loaded, meaning if it occurs before the first screen comes up it's the layout for the first screen. And the exception is raised when setContentView is done with the problem layout ID. If you step through your code you'll likely

[android-developers] Re: Exception every time I launch the application

2010-10-09 Thread DanH
Also keep in mind that one occasionally slips up (or Eclipse slips up) and the project is not rebuilt before running. Or you can simply forget which XML is which. Try rebuilding, and verify for yourself which XML is being used for which screen. On Oct 9, 5:01 pm, Pankaj pankajiit...@gmail.com

[android-developers] Re: Market misery !!

2010-10-09 Thread JP
Sure, and that's been a major nuisance ever since the first of it's kind. I believe BoA took that honor, wayback. I am referring to fully functional, for-mobile apps that emphasize dynamic web app development over native. On Oct 9, 2:32 pm, Lance Nanek lna...@gmail.com wrote: Some of the

[android-developers] Re: Regarding Gallery3D application

2010-10-09 Thread JerryZhang
i want find the documentation about Gallery3D source too.please help me if any. On 9月16日, 下午9时59分, Girish H T htgir...@gmail.com wrote: Hello all, I was going through the code on Gallery3D from cooliris. Is there any detailed level documentation that is available on internet ? I want details

[android-developers] Re: Slow initial showing/drawing of Activities when using own Theme

2010-10-09 Thread Streets Of Boston
Thank you, Mark. I'll try that one out. Still wondering why i don't see this slow down at all when not using theme-inheritance... :) But, who knows, not noticing the slow down may just be perception, because things could happen in a somewhat different order. On Oct 9, 5:36 pm, Mark Murphy

Re: [android-developers] Re: Follow up for the active install count problem

2010-10-09 Thread TreKing
On Sat, Oct 9, 2010 at 1:34 AM, Doug beafd...@gmail.com wrote: Please explain to me how exactly you know what normal is given that the stat has a long reputation for being inaccurate over the past few months. :-) I'm going for what the numbers were before this whole fiasco started and we

[android-developers] QuickContact works fine on 2.2 but not on 2.1

2010-10-09 Thread Mathias Lin
I have a ListView where I want to show the QuickContact (like in the default Contacts android app when you click on the photo of a contact). It works fine on my Nexus One 2.2 or the emulator with avd 2.2, but doesn't work on my Samsung Galaxy S 2.1update1 or emulator 2.1. On 2.1, I'm

Re: [android-developers] Re: Checkbox are not getting selected

2010-10-09 Thread TreKing
On Fri, Oct 8, 2010 at 10:32 PM, pramod.deore deore.pramo...@gmail.comwrote: but now I don't have reference to checkBox, then how to check whether it is selected or not? Look at the documentation for ListView ...