[android-developers] Re: SIGSEGV on Droid X (libskia.so)

2010-07-17 Thread RockNCode
You can use addr2line tool that is in the arm toolchain, using the PC given by the backtrace logs. This can help you to find the exact line where the segmentation fault is so that you can debug further. You might need to rebuild libskia with -g option. It is odd that it only happens on some devices

[android-developers] Android RFC 3339 time string parsing does not work

2010-07-17 Thread skyhigh
I am working on some code which receives an RFC 3339 formatted time string from a Linux web server. I found that the Android Time.parse3339() routine always throws an exception: "Unexpected 0 at position 19. Expected + or -" when it parses the RFC 3339 time string that came from the Linux web s

[android-developers] Re: XML Pull Parser Bugging Out

2010-07-17 Thread 7H3LaughingMan
Thank you for pointing out my stupid mistake, however now I am getting a true error about how   is unresolved. It seems I need to remove it somehow.. On Jul 18, 12:38 am, Romain Guy wrote: > You never request the next element to be read. Your loop should > contain the following statement: > > eve

[android-developers] Re: XML Pull Parser Bugging Out

2010-07-17 Thread 7H3LaughingMan
I fixed it, thanks for pointing out something very stupid that I forgot about...but now I am getting a true error along the line of... "unresolved:  " I am looking into it and it seems it's used to reference stuff in XML but in HTML this is a special space character. On Jul 18, 12:38 am, Romain Gu

[android-developers] Re: Google Maps API in Israel

2010-07-17 Thread oriharel
Thanks. On Jul 14, 12:52 am, Steve Howard wrote: > Likely the same as this: > > http://code.google.com/p/gmaps-api-issues/issues/detail?id=664 > > Steve > > > > On Tue, Jul 13, 2010 at 1:15 PM, oriharel wrote: > > Can a Googler plea

Re: [android-developers] XML Pull Parser Bugging Out

2010-07-17 Thread Romain Guy
You never request the next element to be read. Your loop should contain the following statement: eventType = xpp.next(); On Sat, Jul 17, 2010 at 9:51 PM, 7H3LaughingMan wrote: > I am trying to create a Forum Parsing Application that uses the XML > Pull Parser to grab the HTML and then go through

[android-developers] XML Pull Parser Bugging Out

2010-07-17 Thread 7H3LaughingMan
I am trying to create a Forum Parsing Application that uses the XML Pull Parser to grab the HTML and then go through it and parsing it for the specific data. I managed to create one that works however when I try to create another one that is used by another Activity in the same Application it gets

[android-developers] SIGSEGV on Droid X (libskia.so)

2010-07-17 Thread Michael Bollmann
I'm getting logs like this from several Droid X users. Currently i got no idea how to fix it so i guess i'll remove support for Droid X alltogether. Any other suggestions? Btw. Android really needs a better way for dealing with bugs like this. This is the third time i got a bug that occurs on one

[android-developers] Font rendering problem?

2010-07-17 Thread Zsolt Vasvari
Please see here: http://picasaweb.google.com/zvasvari/AndroidFontBug# I am rendering two lines of text, the only difference is the color. The red text looks obviously shorter and fatter, they are both 18sp in height. Is this a bug or am I doing something wrong? The style for the white text is

[android-developers] Selection list cut off in AutoCompleteTextView in Dialog

2010-07-17 Thread Mathias Lin
I have a dialog window that covers 1/3 of the entire screen height and is displayed on top of my activity. The dialog holds two AutoCompleteTextView fields. The problem I'm facing is that when the user starts typing something into the AutoCompleteTextView, the list with all suggestions only sh

[android-developers] Using EmbossFilterMask

2010-07-17 Thread Stephen Lebed
I'd like to have an embossed look on a bitmap image using its alpha channel. It seems that the EmbossFilterMask works great on drawables, like drawCircle, for instance. Is there a way to apply it to a bitmap like drawBitmap? Thanks, Stephen -- You received this message because you are subscrib

[android-developers] Multi-point touch event

2010-07-17 Thread fengcunhan
Hi everybody, does anyone can give me some example of enlarge and narrow of the picture by the Multi-point touch event.Thank you. 2010-07-18 fengcunhan -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] Re: Disabling Java formatting in the Eclipse editor

2010-07-17 Thread DonFrench
Out of curiosity, what do you hate about the Java formatting. I rather like it myself. On Jul 17, 3:23 pm, A Curious Developer wrote: > Is there a (simple) way to completely and utterly disable all Java > formatting in the Eclipse editor? > > That is an Eclipse question, but I appreciate your in

[android-developers] Re: Seems Android Market statistics go wrong again

2010-07-17 Thread Zsolt Vasvari
In my case only the free one dropped, the paid one just shows the incorrect count as I said a few posts back, but it hasn't dropped per se. On Jul 18, 6:17 am, Neilz wrote: > No this is all apps, not just paid. Mine is free and down 15%. > > On Jul 17, 1:10 pm, Sam wrote: > > > > > Ah ok so the

[android-developers] Re: Transferring control from Non UI thread to Ui Thread

2010-07-17 Thread JP
Try this: http://developer.android.com/intl/de/reference/android/app/Activity.html#runOnUiThread%28java.lang.Runnable%29 On Jul 17, 6:33 am, Ajmer singh wrote: > Hi > > I have started a service that works in background and i need to show a > dialog box containing "Yes" and "No" buttons.But when

Re: [android-developers] Which Android service path to choose for implementing a large upload?

2010-07-17 Thread Frank Weiss
My suggestion is to look at some sample code, like Romain Guy's PhotoStream. Although PhotoStream does a Flickr download instead of an upload, the application structure covers services, AsyncTask (albeit an early version thereof), notifications, etc. -- You received this message because you are s

Re: [android-developers] "When" are the overlays drawn on the map?

2010-07-17 Thread Frank Weiss
If the updates don't happen until the onCreate or onClickEventHandler methods return, first guess is you're misusing the UI thread. That is, the UI thread is busy in your while loop and can't get anything else done, like drawing the overlays. Welcome to UI programming! I strongly suggest you put y

[android-developers] Re: Disabling Java formatting in the Eclipse editor

2010-07-17 Thread DanH
You might note that there are several different versions of Eclipse you can use, and they may have different formatting policies. I know the version I got with Websphere a year ago was far worse in this regard than the vanilla version I downloaded for use with Android. On Jul 17, 5:23 pm, A Curio

[android-developers] "When" are the overlays drawn on the map?

2010-07-17 Thread AUandroid
What I am trying to do - I am continuously getting a stream of lat/lng positions, I want to move a overlay item dynamically on the map based on the lat/lng in the stream. I am displaying the location of moving object dynamically on the map I am putting my whole code in a while(true) loop and tryin

[android-developers] "When" are the overlays drawn on the map?

2010-07-17 Thread AUandroid
What I am trying to do - I am continuously getting a stream of lat/lng positions, I want to move a overlay item dynamically on the map based on the lat/lng in the stream. I am displaying the location of moving object dynamically on the map I am putting my whole code in a while(true) loop and tryin

[android-developers] Which Android service path to choose for implementing a large upload?

2010-07-17 Thread hwrdprkns
I am trying to implement a RESTful API in which I have to upload files that are relatively large for a mobile platform. The upload could take anywhere from 30 seconds to 5 minutes. I would like my application to be completely usable while the upload takes place. I've been doing some research and I

[android-developers] Re: Disabling Java formatting in the Eclipse editor

2010-07-17 Thread A Curious Developer
> Look in settings...  I believe you can disable it or at least change its key > binding. Thanks, I have got rid of most of them, but the menu shortcuts are still there and I don't know how to be rid of them. > Also  Ctrl+S for saving ;) I have been using that, and it seems to help (reduce t

Re: [android-developers] Disabling Java formatting in the Eclipse editor

2010-07-17 Thread Kostya Vasilyev
Look in settings... I believe you can disable it or at least change its key binding. Also Ctrl+S for saving ;) -- Kostya Vasilyev -- http://kmansoft.wordpress.com 18.07.2010 2:24 пользователь "A Curious Developer" написал: Is there a (simple) way to completely and utterly disable all Jav

[android-developers] Disabling Java formatting in the Eclipse editor

2010-07-17 Thread A Curious Developer
Is there a (simple) way to completely and utterly disable all Java formatting in the Eclipse editor? That is an Eclipse question, but I appreciate your indulgence because this problem is slowly driving me insane. I am spending a lot of time fixing code to make it look good again after it gets mang

[android-developers] Re: Seems Android Market statistics go wrong again

2010-07-17 Thread Neilz
No this is all apps, not just paid. Mine is free and down 15%. On Jul 17, 1:10 pm, Sam wrote: > Ah ok so the was the explanation all along: > > http://android-developers.blogspot.com/2010/07/market-statistics-adju... > > Logically the total download figures would include refunds (since they > sti

[android-developers] If and How to get video thumbnails?

2010-07-17 Thread kivy
Hi, I am working on a video app. And I have created a GridView that shall display any video stored on the sdcard. Currently it only displays the name of the video file. I wanted to ask if and how it would be possible instead of showing only the name to also display thumbs (or a frame preview) of t

[android-developers] Re: error: Error: No resource found that matches the given name ()

2010-07-17 Thread Kumar Bibek
Use android:layout_above="@+id/flyobject instead. The + denotes forward lookup. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Jul 16, 7:38 pm, zci_zr wrote: > Hi > > i am new to android, I try to create layout so that I have background > image, and have a ImageView with anim

[android-developers] Re: Changing the drop down MultiAutoCompleteTextView

2010-07-17 Thread Kumar Bibek
What are the problems you are facing? It's pretty straight forward using the ResourceCursorAdapter. Please post your issues that you face, and may be some code snippets as well. That will help us understand your problems. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Jul 17, 1

[android-developers] Re: startActivivityForResult and onResult From a view

2010-07-17 Thread Kumar Bibek
What do you mean by a view? You are starting the new activity from your base activity's context. So, you will be receiving the result in your base actvity. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Jul 17, 12:42 pm, Ramya S wrote: > I started an Activity from my view with

Re: [android-developers] Transferring control from Non UI thread to Ui Thread

2010-07-17 Thread Frank Weiss
I think you should know that an Android service is not meant to interact with the user directly, as with a dialog. Aside from questioning why the user input is needed in the midst of the service and whether the entire background process needs to be performed in a service, here's what I'd recommend

[android-developers] Re: Android as Desktop OS

2010-07-17 Thread Bala
I think, Google Chrome is evolving to become a Desktop OS. Eventually, whether it is Desktop or Laptop or Palmtop or any MID (Mobile Internet Device), will have a thin OS served from Clouds with a wireless connectivity. Regards, Bala -- You received this message because you are subscribed to the

[android-developers] Re: webkit, javascript, onclick, MotionEvent, event handlers not firing

2010-07-17 Thread jacek
Agreed. And yet, in my new app, I would love to use higher resolutions when available. This app will soon be hitting Market :-) On Jul 17, 12:57 pm, "Maps.Huge.Info (Maps API Guru)" wrote: > Our app "Radar Now!" is currently on over 380,000 devices in the US, > every single one available. It work

Re: [android-developers] Android Force close dialog

2010-07-17 Thread Kostya Vasilyev
Veradis, You can't prevent the ANR/FC dialog from appearing, since it's there for a reason. But you can eliminate its cause - your application taking up time in the UI thread, making it unresponsive. Android provides an easy to use class to perform lengthy operations in a background thread,

Re: [android-developers] Need help - videos won't show as thumbs

2010-07-17 Thread Victoria Busse
Hey I just saw that I forgot s.th. within getCount(), so I changed it to public int getCount() { //return mThumbIds.length; if(vidUris!=null){ return vidUris.length;} return 0; } The thing now is that I still cannot see any video

[android-developers] Android Force close dialog

2010-07-17 Thread veradis
Hi, In my app, i will be doing some multiple file upload to server. The app activity displays FORCE CLOSE dialog while server call is in progress. So, is it possible to manage the dialog from appearing. I will displaying proper messages to inform user the app is still running. Also is there is an

[android-developers] Read info from account gmail from hanset

2010-07-17 Thread David Toledo
Hi All Exist some way from read the info from account gmail from handset. I need using Gmail Sender and using the user and password from login handset and no want write in the application the user and password Example: GMailSender sender = new GMailSender(userReadAutomatically , passwordReadAuto

[android-developers] Re: Decent Android reference book?

2010-07-17 Thread Maps.Huge.Info (Maps API Guru)
> > With Java in a Nutshell I can find, eg, String and scan the list of > methods to refresh my memory of, say, all the options for indexOf in > 10 seconds. > If I need to refresh my memory on anything, I use the greatest resource that has ever been created for programmers, Google. No need for an

[android-developers] Re: webkit, javascript, onclick, MotionEvent, event handlers not firing

2010-07-17 Thread Maps.Huge.Info (Maps API Guru)
Our app "Radar Now!" is currently on over 380,000 devices in the US, every single one available. It works regardless of screen density and treats every screen as if the width was 320px. The length is proportional to the pixels of the screen so that can vary but it is predictable. That's one of the

[android-developers] Re: Udp +Tcp connection in Android

2010-07-17 Thread HeHe
finally i understood xuxu's question, did i? On Jul 17, 8:28 am, Carlos Silva wrote: > On Sat, Jul 17, 2010 at 11:40, Indicator Veritatis wrote: > > > Actually, it is possible, but it would require custom code for both > > server and client dropping the UDP connection and starting up a > > corres

[android-developers] I have a problem with android2.2 Launcher2.apk

2010-07-17 Thread LG ZHU
hi,all I have a problem with android2.2 Launcher2.apk , I find it also on emulator . why I cant not move focus on launcher panel homebutton when use mouse roll down or down focus. after I do like this 1. adb pull Launcher2.apk from /system/app 2. delete Launcher2.apk from emulat

[android-developers] Re: webkit, javascript, onclick, MotionEvent, event handlers not firing

2010-07-17 Thread jacek
Thank you. I hope your little nugget will also help when switching to higher screen resolutions, the "screen density dance" etc I think this will be another can of worms On Jul 17, 11:05 am, "Maps.Huge.Info (Maps API Guru)" wrote: > I should have mentioned this little nugget: > > In the html, in

[android-developers] Re: App Inventor to Market

2010-07-17 Thread Tim
Have you considered looking at other options to the App Inventor such as our commercially proven MobiForms Developer - particularly for database orientated apps? At MobiForms we released the world's first rapid application development tool for Google Android smartphones nearly a year ago now. Mobi

Re: [android-developers] Re: Udp +Tcp connection in Android

2010-07-17 Thread Carlos Silva
On Sat, Jul 17, 2010 at 11:40, Indicator Veritatis wrote: > Actually, it is possible, but it would require custom code for both > server and client dropping the UDP connection and starting up a > corresponding TCP connection on agreed upon ports -- but why? The > request sounds like it can only be

[android-developers] Re: Image viewers on android phones not always the best experience?

2010-07-17 Thread nation-x
I just use an ImageView and resize the image before I display it. Here is my layout: http://schemas.android.com/apk/res/android"; android:id="@+id/image" android:layout_width="wrap_content" android:layout_height="wrap_content" android:scaleType="centerInside"

[android-developers] Re: webkit, javascript, onclick, MotionEvent, event handlers not firing

2010-07-17 Thread Maps.Huge.Info (Maps API Guru)
I should have mentioned this little nugget: In the html, in the head section, try putting this in: It stops automatic scaling and zooming. -John Coryat -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email t

[android-developers] Re: change scroll speed in gallery.

2010-07-17 Thread nation-x
create a new view class that extends Gallery and override onFling(). Shawn McAllister On Jul 16, 8:42 am, mmkr wrote: > Hi, > > Can i change the scroll speed in gallery view? i want a constant > change in the gallery views irrespective of the speed the user flings > it. > > Thanks in advance. -

[android-developers] Re: Activity's windows not full screen

2010-07-17 Thread nation-x
In your AndroidManifest.xml in the application section you can specify the activity to have a dialog theme. This will create a similar effect to what you want... then you just style the views to get the appearance you want (width, height, etc). On Jul 14, 7:20 pm, Steevan wrote: > Hi :) > > How

Re: 回复: [android-developers] How to uninstall application?

2010-07-17 Thread Alex Xin
Thanks for the reply! It's very useful. I have another question: How to export apk file of a selected package? 2010/7/17 YuviDroid > I don't think you can uninstall an app without user confirmation. > I found a couple of other posts about this that might be useful to you > here: > http://andro

[android-developers] Re: Using back button in android.

2010-07-17 Thread nation-x
See http://android-developers.blogspot.com/2009/12/back-and-other-hard-keys-three-stories.html Shawn McAllister On Jul 15, 9:24 am, Ajmer Singh wrote: > I am a new to android development > I want to override the default back button operation in android,please let > me know how i can do this in

[android-developers] Re: How to unzip multiple files zipped in a zip file with individual name automatically?

2010-07-17 Thread nation-x
Here you go. :) static Handler myHandler; ProgressDialog myProgress; public void unzipFile(File zipfile) { myProgress = ProgressDialog.show(getContext(), "Extract Zip", "Extracting Files...", true, false); File zipFile = zipfile; String directory =

[android-developers] Re: Screen Rotation

2010-07-17 Thread nation-x
If you look at this tutorial I created at http://androidworkz.com/2010/07/06/source-code-imageview-flipper-sd-card-scanner/ there is an example of one way to save an array object to a file and to read it back in. I tried using SharedPreferences, etc as described in the docs and gave up because I co

[android-developers] Re: How to give a rubber-band/bounce effect to ListView (similar to iPhone)

2010-07-17 Thread nation-x
I adapted the dynamics tutorial available here to a custom listview... I don't think you can do it with a normal listview. http://blogs.sonyericsson.com/developerworld/category/tutorials/3d-list/ Shawn McAllister On Jul 17, 6:47 am, UD wrote: > Hi, > > I want a ListView to have rubber-band (or

[android-developers] Transferring control from Non UI thread to Ui Thread

2010-07-17 Thread Ajmer singh
Hi I have started a service that works in background and i need to show a dialog box containing "Yes" and "No" buttons.But when i try to show the Dialog box from service it give me below exception and not even show dialog box. *"Exception is here.java.lang.RuntimeException: Can't create handler in

[android-developers] Re: Decent Android reference book?

2010-07-17 Thread DanH
With Java in a Nutshell I can find, eg, String and scan the list of methods to refresh my memory of, say, all the options for indexOf in 10 seconds. With the online ref I it takes 5 seconds to open the link, 15 seconds to find "String", 5 to scroll down to the method list, and then I still don't h

[android-developers] view and subview

2010-07-17 Thread Jags
is there a way i can create a view and add some textviews into it ? programmatically ? any sample code ? regards -- 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 un

[android-developers] Re: webkit, javascript, onclick, MotionEvent, event handlers not firing

2010-07-17 Thread jacek
When I say I worked for hours, I obviously do not mean coding for hours before testing every now and then, which would indeed be stupid. I meant lots and lots of change-compile-install-run cycles. setSupportZoom(false) seemed to be the last straw, after this change my event handlers would always f

[android-developers] Re: Android as Desktop OS

2010-07-17 Thread Andre
You might try checking this page: http://code.google.com/p/live-android/ This is not exactly what you have asked, but trying to use using from a Bootable CD or USB device might give you an idea of how would it work on your desktop After this, try cheching on the project documentations/forums if

[android-developers] Re: Seems Android Market statistics go wrong again

2010-07-17 Thread Sam
Ah ok so the was the explanation all along: http://android-developers.blogspot.com/2010/07/market-statistics-adjustments.html Logically the total download figures would include refunds (since they still downloaded the app) but not failed payment transactions (because they never got to install the

[android-developers] Re: Seems Android Market statistics go wrong again

2010-07-17 Thread Sam
I have found this too, and it only appears to have affected my paid app. Would be nice to get some clarification about what is going on here? This has happened a couple of times this year already, but then it affected most of my apps. On Jul 17, 5:50 pm, Evgeny V wrote: > Yes. It dropped again

[android-developers] Need help - videos won't show as thumbs

2010-07-17 Thread kivy
Hi there, I am trying to display videos form the emulated sdcard, but it seems that I have done something wrong because no video thumbs are displayed within my gridview... it would be great if someone could help me out, because I have no idea at the moment what I may have done wrong... Thank you i

[android-developers] Re: Decent Android reference book?

2010-07-17 Thread Indicator Veritatis
You must have either an outdated, slow computer or a very bad network connection, if you find looking up faster in "Java in a Nutshell" (a fine book, though). I have had no such problem with the online reference, yet my connection is average DSL, my computer slightly below average memory and CPU sp

[android-developers] How to give a rubber-band/bounce effect to ListView (similar to iPhone)

2010-07-17 Thread UD
Hi, I want a ListView to have rubber-band (or bounce) effect while scrolling. Just similar to iPhone lists. -- UD -- 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

[android-developers] Re: Need help - Android mkdir("/sdcard/") fails on Frayo

2010-07-17 Thread Indicator Veritatis
Which can be (should be) done with another method from the same android.os.Environment class, namely, getExternalStorageState(). Hence the sample code at http://developer.android.com/reference/android/os/Environment.html#getExternalStorageDirectory%28%29 using both. On Jul 16, 8:54 am, Mark Murph

[android-developers] Re: Udp +Tcp connection in Android

2010-07-17 Thread Indicator Veritatis
Actually, it is possible, but it would require custom code for both server and client dropping the UDP connection and starting up a corresponding TCP connection on agreed upon ports -- but why? The request sounds like it can only be based on a misunderstanding; not just of Android, but of network p

[android-developers] Re: OpenGL ES Java binding not supported on Nexus One + Android 2.2?

2010-07-17 Thread Indicator Veritatis
What does it do on the Emulator when building and running on Android version 2.2? Or on previous versions? On Jul 16, 8:11 am, devi prasad wrote: > My Nexus One is updated with Android version 2.2 (build number FRF91). > However, when I try to use the OpenGL ES Java binding, I see the > following

Re: [android-developers] Re: App Inventor to Market

2010-07-17 Thread Jonas Petersson
Kostya, On 07/17/2010 11:36 AM, Kostya Vasilyev wrote: Still think it would work well for games / social apps, but for productivity apps it can actually be the opposite of what's intended. Consider two productivity apps, one of which helps get the same work done in half the time. Which one of t

[android-developers] Re: progressive video play over https

2010-07-17 Thread Indicator Veritatis
But why even bother? If Dave Sparks tells us it is not supported, we really should be able to trust that he knows what he is talking about: take the hint from his email address domain! On Jul 15, 7:12 pm, Jenus Dong wrote: > try use media player to play the https url, find out. > > the manifest o

[android-developers] Re: Using back button in android.

2010-07-17 Thread Indicator Veritatis
Override it? 99 out of 100 times, that is a very bad idea. The users really do semi-intuitively expect Back to call finish() (not that they know this API) to make the current activity go away, taking them to the next one on the Activity Stack. So why do you want to do this? On Jul 15, 6:24 am, Aj

Re: [android-developers] Blowfish cypher...

2010-07-17 Thread Kim Damevin
Hi, I used blowfish encryption on my android application. I don't know why but the blowfish encryption has been commented out on the bouncy castle library on android. So I had to take the bouncy castle sources and change the provider name from BC to BC2 and rename the package name into bouncycast

Re: [android-developers] Re: Best way to logout each time the application/task goes to background

2010-07-17 Thread Kim Damevin
@Frank weis: my application requires a high level of security, so if the user leaves it I don't want that someone else who would use the android mobile can open it without having to log in. Thanks for all your replies it helps a lot ! I think i will go for the timeout method. It's a good point tha

Re: [android-developers] Re: Seems Android Market statistics go wrong again

2010-07-17 Thread Evgeny V
Yes. It dropped again about 15%! On Sat, Jul 17, 2010 at 9:59 AM, Neilz wrote: > How annoying. Mine have dropped around 15%. > > And I'd just been boasting to my friends about a certain figure I'd > reached - I'll have to do it all again in a month or so now :-) > > -- > You received this messag

Re: 回复: [android-developers] How to uninstall application?

2010-07-17 Thread YuviDroid
I don't think you can uninstall an app without user confirmation. I found a couple of other posts about this that might be useful to you here: http://android.amberfog.com/?p=98 http://osdir.com/ml/AndroidDevelopers/2009-08/msg01409.html

Re: [android-developers] Re: App Inventor to Market

2010-07-17 Thread Kostya Vasilyev
Jonas, Still think it would work well for games / social apps, but for productivity apps it can actually be the opposite of what's intended. Consider two productivity apps, one of which helps get the same work done in half the time. Which one of them deserves a ratings boost? -- Kostya 17.

[android-developers] Re: App Inventor to Market

2010-07-17 Thread Zsolt Vasvari
That's a very high percentage compared to mine, obviously. But I since cannot see your apps here in Singapore, I can't even say what they do, so what I will say may or may not apply to you: for simpler apps, a high rating probably ensures that you will keep the app (favorite comment "It does what

Re: [android-developers] Re: App Inventor to Market

2010-07-17 Thread Jonas Petersson
On 07/17/2010 10:48 AM, Kostya Vasilyev wrote: <> Right, but how do you come up with alternative applications, given the variety of apps?[...] Yeah, it's hardly trivial, but hey, this is Google - if anyone can find relations in statistics, it's them... Also, for Google (Ad-based income) tim

[android-developers] Forwarding ranges of ports to the Android emulator

2010-07-17 Thread Luca Carlon
Hi! I'm working on a C++ library which uses TCP to estabilish communications with the LAN. I've been able to use it without problems on a real device with Android, but I'm not able to use it on the emulator. I suppose it is because the emulator doesn't have access to my LAN. I read the documentati

回复: [android-developers] How to uninstall appl ication?

2010-07-17 Thread Taoyi Guo
i am interest in this too 在 2010-7-17 下午2:07,"Alex Xin" 编写: Hi, there I'm now implementing an app management tool, but I don't know how to uninstall an application using SDK? Could anyone tell me this? Thanks a lot Alex -- You received this message because you are subscribed to the Google Gro

[android-developers] How to let OpenCore can make files under AVI parser node folder

2010-07-17 Thread sunshine_uyl
Dear Sir, I create aviparsernode folder by coping from MP4 parser node folder under /external/opencore/nodes/. But when I type "make" command under /external/opencore/build_config/opencore_dynamic/. The files under aviparsernode folder are not compilied. Does any one knows how to let OpenCo

Re: [android-developers] Re: App Inventor to Market

2010-07-17 Thread Kostya Vasilyev
God Dag Jonas, <> Right, but how do you come up with alternative applications, given the variety of apps? There are categories defined for Android Market apps, but they are quite broad. It would be possible to define more categories, but I sincerely hope there will be apps that don't fit any

[android-developers] Re: Best way to logout each time the application/task goes to background

2010-07-17 Thread Anthoni
Hello, I also do this, BUT I do not put it into every single activity. What I do is create a Handler at application level and a time check object. The handler fires every say 10 seconds and checks the time object. If it matches what I need I broadcast an event across my entire application. Each ac

[android-developers] Blowfish cypher...

2010-07-17 Thread sblantipodi
As subject... Is there a way to use blowfish cypher to encrypt a password using android? On JavaME I do it using Bouncy Castle, how to do it on android? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to a

Re: [android-developers] Re: App Inventor to Market

2010-07-17 Thread Jonas Petersson
Privet Kostya, On 07/17/2010 08:09 AM, Kostya Vasilyev wrote: Time spent and number of launches are poor metrics for app quality. Maybe it makes some sense for games. Well, "quality" is not at all what I was after, "popularity" more so. There certainly are apps that automatically start a serv

[android-developers] Re: Market reporting wrong app size

2010-07-17 Thread String
Um, no. Copy protection doubles the size of the download - this is what the Market is reporting - but once installed, it doesn't take double space. Note, however, that the handset does still need the free RAM at install time to deal with the double-size APK. String On 16 July, 19:48, Bob Kerns

[android-developers] startActivivityForResult and onResult From a view

2010-07-17 Thread Ramya S
I started an Activity from my view with startActivityForResult using ((Activity)getContext()).startActivityForResult(intent, xxx); but I don't receive the result in onActivityResult in the view (As expected) But I receive it in the activity of the view. Is there anyway that I can receive the

[android-developers] Re: system lock up and restarts when I start and stop my app.

2010-07-17 Thread String
I had a similar situation with one of my apps, not identical but maybe close enough to be of help. I eventually tracked it down to a race condition between OpenGL and my own code. I fixed it by adding the Java "volatile" modifier to all variables accessed in the onDrawFrame handler. I don't know i

[android-developers] How to uninstall application?

2010-07-17 Thread Alex Xin
Hi, there I'm now implementing an app management tool, but I don't know how to uninstall an application using SDK? Could anyone tell me this? Thanks a lot Alex -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send em