[android-developers] Re: Oracle Android App Store

2010-06-13 Thread gosh
Btw, I saw that you (via AndAppStore) got an honorable mention in the WIRED article re 'Independent App Stores' yesterday. Congrats. Steve On Jun 13, 1:54 am, Al Sutton a...@funkyandroid.com wrote: On Jun 12, 8:44 am, gosh steve...@unimelb.edu.au wrote: (our revenue is from ads in the client

[android-developers] Re: What is best method for an animation worker thread?

2010-06-13 Thread skink
On Jun 13, 2:51 am, droidful Any further suggestions? why do you use AsyncTask for animations? why not something that extends Animation? pskink -- 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: What is best method for an animation worker thread?

2010-06-13 Thread droidful
Hi pskink. I initially used Animations by setting dynamically configured animations on the views I wanted to move around and then starting the animations. The problem I found was that in the case where part of the view is outside the display area as it animates back into the display area the part

[android-developers] Re: What is best method for an animation worker thread?

2010-06-13 Thread droidful
Ok, looks like I might be being a noob. I might be able to do something with getTransformation. Ill look into it. -- 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: Best way for web service calls ??

2010-06-13 Thread StillALearner
@Vinod : I hope u mean the kSoap jar,but my main concern is the payload, when it comes to SOAP services i felt it to be bit heavy (help me understand if its the other way).I want it to be as light- weight as possible. @Doug : The Video PDF was really useful and inline with my search :) On Jun

[android-developers] Re: What is best method for an animation worker thread?

2010-06-13 Thread skink
droidful wrote: Ok, looks like I might be being a noob. I might be able to do something with getTransformation. Ill look into it. yes, this is a method where you implement your animation, you can change supplied Transformation (matrix/alpha) or whatever else you want pskink -- You received

[android-developers] Orange rectangle around links in WebView

2010-06-13 Thread oriharel
Hi All, I have a web view that is loaded with an HTML that contains links (a ref). when I switch to another activity (say to another tab in a tab activity) and then switching back to it, the link is surrounded with an orange rectangle. also happens in the GoogleAdView which really makes it

[android-developers] ListView Recycler Kill my UI?

2010-06-13 Thread Jammy
I add a TableLayout in a listView, inside the TableLayout, it contains some photo that will be load from network in another thread, but after load is done, I call notifyDataSetChanged of the ListView, sometime it just redraw the item. my code look like this : public View getView(final int

[android-developers] Re: Oracle Android App Store

2010-06-13 Thread Al Sutton
Thanks, it's just shame they didn't talk to us at all about the article yet they give the appearance they did by saying; But now smaller Android exclusive startups such as Andspot, SlideMe and AndAppStore are getting into the fray. Why develop just an app when you can build an app store, they

[android-developers] Re: ListView Recycler Kill my UI?

2010-06-13 Thread Jammy
sorry type, should be: After I call notifyDataSetChanged of the ListView, sometime it just DON'T redraw the item. On Jun 13, 3:40 pm, Jammy mistapos...@gmail.com wrote: I add a TableLayout in a listView, inside the TableLayout, it contains some photo that will be load from network in another

[android-developers] Re: Slow Eclipse on OS X

2010-06-13 Thread Al Sutton
It's been a problem for a while, I opened a bug at http://code.google.com/p/android/issues/detail?id=6183 so you can put a star on it if you want to vote it up. My experience is that it seems to be down to the layout previewer, the more I use it the faster performance degrades. Al. P.S. Before

[android-developers] Re: What is best method for an animation worker thread?

2010-06-13 Thread droidful
Thanks skink, works a treat. I extended Animation and applied my animations in the applyTransformation method (without calling the super). Basically the code I already had just slotted straight in. Cheers! -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] can not see app in Market

2010-06-13 Thread Jerry Fan
If u are using milestone and if u just upgraded APAC update, then it is normal. It takes time to view copy protected apps. On Sun, Jun 13, 2010 at 7:08 AM, Andrei gml...@gmail.com wrote: I have 3 android phones with different Os version. I can see all my apps, but one disappeared for more

[android-developers] Re: Market problems again

2010-06-13 Thread Tomáš Hubálek
They are aware of this: http://android-developers.blogspot.com/2010/06/download-count-problems.html Tom On 12 čvn, 21:31, Mr Pants pantssoftw...@googlemail.com wrote: Same here - ETA on fix please Mr Google? I hope it's not going to be like the last one which took ages On Jun 12, 7:19 

[android-developers] How to test complex interfaces described by aidl?

2010-06-13 Thread mache
Hi, I am trying to figure out how to test services in android. The test class which is intented for testing services is 'ServiceTestCase'. The sample implementation which I have found so far are clear to me e.g. com.example.android.apis.app.LocalServiceTest. But I have problems to understand how

[android-developers] Re: App download/install count - market glitch?

2010-06-13 Thread Tomáš Hubálek
http://android-developers.blogspot.com/2010/06/download-count-problems.html On 12 čvn, 17:47, Ken ken0624...@gmail.com wrote: I have couple of apps (billboard100 and xmplayer) that had been reaching download/installs of 10k/9k+ and 9k/6k respectively. This morning the counts dropped to 1k/1k

[android-developers] app can't run in full screen mode with avd 800*480 (skin wvga800)

2010-06-13 Thread xuxiake2...@gmail.com
I create a avd using android avd manager. The detail in config.ini as fellow: hw.lcd.density=160 skin.name=WVGA800 skin.path=platforms\android-4\skins\WVGA800 vm.heapSize=16 sdcard.path=C:\Documents and Settings\xuwan\.android\avd\1.6.avd \sdcard.img image.sysdir.1=platforms\android-4\images\

Re: [android-developers] Re: Market problems again

2010-06-13 Thread YuviDroid
I hope they fix this soon 2010/6/13 Tomáš Hubálek tom.huba...@gmail.com They are aware of this: http://android-developers.blogspot.com/2010/06/download-count-problems.html Tom On 12 čvn, 21:31, Mr Pants pantssoftw...@googlemail.com wrote: Same here - ETA on fix please Mr Google? I

[android-developers] Re: What is best method for an animation worker thread?

2010-06-13 Thread skink
On Jun 13, 6:15 am, droidful austral...@gmail.com wrote: Thanks skink, works a treat. I extended Animation and applied my animations in the applyTransformation method (without calling the super). Basically the code I already had just slotted straight in. Cheers! yes, applyTransformation,

[android-developers] Google AdSense

2010-06-13 Thread Neilz
I'd like to sign up for AdSense for my app. I'm UK based, and it looks as though it might only be available to US and Canada? Is this the case, and is that likely to change soon? Also, on the sign up page, you are required to enter a website URL. I don't have a website, I have an android app.

[android-developers] Emulator kills sounds on Mac OS X

2010-06-13 Thread sebsto
Hello, I am using Android SDK on Mac OS X with an external sound card (Edirol) When I do start the Android Emulator, it stops all sound output on the Mac. iTunes does not play anymore, no application (including the emulator) produce sounds through the external sound card. Only solution is to

Re: [android-developers] Re: What is best method for an animation worker thread?

2010-06-13 Thread Australuke
Well i overrode getTransformation to handle completion and cancellation so no probs! Interestingly the UI now updates much smoother, i must check the android source to see what they are doing. Anyway, yeah, AsyncTask just didnt feel right, thanks again for pointing me in the right direction --

[android-developers] Activity within TabActivity: onResume not always called when tab selected?

2010-06-13 Thread Thierry Legras
Hi, I have a TabActivity with 3 tabs: - tab A is created with a TabContentFactory, - tabs B C are created as Activity. When I switch from B to C, B activity is resumed (onResume called). But when i switch from A to B, onResume is NOT called. Unfortunately i need B to be aware that it has been

[android-developers] How to catch a Done key press from the soft keyboard

2010-06-13 Thread oriharel
Hi, how do I catch specific key events from the soft keyboard? specifically I'm interested in the Done key. thanks, Ori -- 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

[android-developers] Re: Google AdSense

2010-06-13 Thread Emmanuel
There is a special adsense for android. But it is still in beta for the moment, and you need 100 000 daily pageviews to apply to the beta ! But there are others mobile ad provider : Admob, greystripe, mobclix, Emmanuel / Alocaly http://androidblogger.blogspot.com/ http://www.alocaly.com/

[android-developers] Re: Speed issue: content provider vs plain sqlite db

2010-06-13 Thread ko5tik
LIst adapter pulling data lazily out of database and reusing views will rescue you. In my game I display highscore list with 1000 entries - pretty fluent. regards, On Jun 12, 5:18 pm, Moss b.thax@gmail.com wrote: Just to make a small update on the issue, I looked a bit at romain guys

[android-developers] Re: Activity within TabActivity: onResume not always called when tab selected?

2010-06-13 Thread Thierry Legras
Maybe I have found something: From TabActivity, set a OnTabChangedListener, then the listener is called: String tabTag = getTabHost().getCurrentTabTag(); if tabTag.isEqual(TAB_B) { MyBActivity bActivity = (MyBActivity )getLocalActivityManager().getActivity(tabTag); bActivity-refreshFromDB();

[android-developers] Re: Best way for web service calls ??

2010-06-13 Thread ko5tik
Do you send or receive? Large data requires some kind of pull parser - there is native pull parser for XML (in android) but not for JSON. So for 1: if you receive try to use XML with pull parser, or some 3rd party library for JSON prividing same functionality for 2: it does not matter. I use

[android-developers] Re: Market problems again

2010-06-13 Thread Moss
They are aware of the issue: http://groups.google.com/group/android-discuss/browse_thread/thread/ecf38e196fca17c8 Thanks Romain for the quick reply!! On 13 jun, 11:14, YuviDroid yuvidr...@gmail.com wrote: I hope they fix this soon 2010/6/13 Tomáš Hubálek tom.huba...@gmail.com They

[android-developers] Re: Emulator kills sounds on Mac OS X

2010-06-13 Thread Simon Broenner
I'm going out on a limb here, because I use Windows myself, but I've seen similar behaviour with external sound cards and ASIO drivers/ applications. Some of the sound cards (my EMU 0202USB, for instance) aren't capable of processing a second audio stream in addition to the ASIO stream, which

Re: [android-developers] How to load url in webview.

2010-06-13 Thread Sohan badaya
Hi All, Above code not working in my system because of proxy problem. Is anyone know how to set behind proxy in emulator. Thanks Sohan Badaya On Fri, Jun 11, 2010 at 7:52 PM, Sohan badaya sohan.bad...@gmail.comwrote: Hi, Thanks for reply, I will try this code behind proxy. Hope this will

[android-developers] Re: can not see app in Market

2010-06-13 Thread Andrei
i am not using milestone and it's not copy protected do i need to resubmit it under dif name? On Jun 13, 4:19 am, Jerry Fan jerryfan1...@gmail.com wrote: If u are using milestone and if u just upgraded APAC update, then it is normal. It takes time to view copy protected apps. On Sun, Jun

[android-developers] Re: TaskAffinity causes new instance being created when startActivity

2010-06-13 Thread James Wang
Thanks, YangJian. What we want is to put all activities started by L stay in the same task as L. So we have to set all activities`s taskAffinity the same one. For that reason, Single Task is not for what we want, because it is goint to make A as root of that task which is L in fact. Thanks,

[android-developers] Service Vs Thread

2010-06-13 Thread tarek.attia
Hi all, I have a question what to Use ,Service Or Thread,as both run in the background -- 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] Strange behavior of ProgressDialog when using its two arguments constructor

2010-06-13 Thread PP
Hello, Since I am using a theme with a light background and thus dark text color, I am trying to change the text color of a ProgressDialog from black to white as follow in my res/values/style.xml ?xml version=1.0 encoding=utf-8? resources !-- theme général défini au niveau de l'application

[android-developers] Re: Service Vs Thread

2010-06-13 Thread skink
On Jun 13, 11:46 am, tarek.attia tarek.m.at...@gmail.com wrote: Hi all, I have a question what to Use ,Service Or Thread,as both run in the background no, services run in the UI thread pskink -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Service Vs Thread

2010-06-13 Thread Kumar Bibek
Services obviously don't run on the UI thread. It runs in the background. However, Services have their own lifecycle, and can be easily managed by applications. You can think of Services as an extension of threads, in the sense that both of them do not run on the UI thread. Thanks and Regards,

[android-developers] Re: Service Vs Thread

2010-06-13 Thread skink
Kumar Bibek wrote: Services obviously don't run on the UI thread. It runs in the background. However, Services have their own lifecycle, and can be easily managed by applications. You can think of Services as an extension of threads, in the sense that both of them do not run on the UI

Re: [android-developers] Re: Service Vs Thread

2010-06-13 Thread tarek attia
Services Run in the background as stated here *Services*A *service* doesn't have a visual user interface, but rather runs in the background for an indefinite period of time http://developer.android.com/guide/topics/fundamentals.html So my question is when to use Services and When to Use threads

[android-developers] Re: Slow Eclipse on OS X

2010-06-13 Thread David Horn
Al, Exactly the same thing happens to me on OS X. I've accepted that I need to restart Eclipse every so often to solve the problem. It's particularly exacerbated if using the XML tools - for example, layout or editing the manifest file the friendly way. Dave. On Jun 13, 8:54 am, Al Sutton

[android-developers] App not showing in Market - 2.1, not copy protected

2010-06-13 Thread David Horn
Hi all, People are having problems finding my app (Advanced Map Live Wallpaper) in the Android Market. It's free, not copy-protected, and the only requirement is SDK level 7 or above. However, it's invisible on some Nexus 2.1 devices, a lot of Droids (2.1), and a smattering of other phones.

Re: [android-developers] Service Vs Thread

2010-06-13 Thread Olivier Guilyardi
On 06/13/2010 03:46 PM, tarek.attia wrote: I have a question what to Use ,Service Or Thread,as both run in the background There is confusion here, because you are referring to two different meanings of the word background. A thread, in Java but also in many other languages, allows for

Re: [android-developers] Service Vs Thread

2010-06-13 Thread Olivier Guilyardi
On 06/13/2010 06:23 PM, Olivier Guilyardi wrote: On 06/13/2010 03:46 PM, tarek.attia wrote: I have a question what to Use ,Service Or Thread,as both run in the background There is confusion here, because you are referring to two different meanings of the word background. A thread, in

[android-developers] Content provider implementation questions

2010-06-13 Thread Alex Xin
Hi, All I'm now trying to implement my own content provider. My original data was stored on network or local/remote file systems, so I want to provide data via input stream. I know that client may call ContentResolver.getnputStream to retrieve the input stream to access data. But I don't know how

[android-developers] Re: Market problems again

2010-06-13 Thread Maps.Huge.Info (Maps API Guru)
Issue appears to be resolved. -John Coryat -- 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

Re: [android-developers] Service Vs Thread

2010-06-13 Thread tarek attia
Thanks you so much for this clarification ,,exactly I want to make an application that keeps running while the user may went of the main application ,,and I guess Service will be the best candidate for doing that ,,, But what if the application will take much time ,,so should I make a thread

Re: [android-developers] Service Vs Thread

2010-06-13 Thread Frank Weiss
The problem appears to mainly be the formulation of the question. In Android, an application doesn't run - it's just a collection of resources. Of those resources, Activities and Services can run, but their runtimes are relatively brief. Please try to explain what your application needs to do when

[android-developers] Re: Market problems again

2010-06-13 Thread Mr Pants
Same here - thanks Google dudes. On Jun 13, 5:43 pm, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: Issue appears to be resolved. -John Coryat -- 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: App not showing in Market - 2.1, not copy protected

2010-06-13 Thread Jeremy Statz
There's a bug on the Droid that prevents it from showing anything with uses-feature live_wallpaper set, unless that's been fixed recently. Doesn't explain a 2.1 Nexus, though... On Jun 13, 11:17 am, David Horn pga...@gmail.com wrote: Hi all, People are having problems finding my app (Advanced

Re: [android-developers] Re: Slow Eclipse on OS X

2010-06-13 Thread Mariano Kamp
Do you guys use the 64 bit download? On Sun, Jun 13, 2010 at 6:12 PM, David Horn pga...@gmail.com wrote: Al, Exactly the same thing happens to me on OS X. I've accepted that I need to restart Eclipse every so often to solve the problem. It's particularly exacerbated if using the XML tools

Re: [android-developers] Re: TaskAffinity causes new instance being created when startActivity

2010-06-13 Thread Dianne Hackborn
If you want everything running in the same task, then don't use FLAG_ACTIVITY_NEW_TASK. On Sun, Jun 13, 2010 at 5:59 AM, James Wang jameswangc...@gmail.com wrote: Thanks, YangJian. What we want is to put all activities started by L stay in the same task as L. So we have to set all

Re: [android-developers] Make entire screen disabled

2010-06-13 Thread Dianne Hackborn
On Sat, Jun 12, 2010 at 4:39 AM, pawan nimje pawanni...@gmail.com wrote: thats ok .. i have tried that .. thats working ... but wat i want is the screen to look in background ...i.e i want the entire activity screen to look as if its in the background ( how an sctivity screen looks when theres

[android-developers] GLES/IntBuffer/?? Mis-placed verts?

2010-06-13 Thread Samsyn
so... I have a simple terrain mesh which, generally speaking, works fine. But as I walk around, occasionally, from some camera angles, a triangle of that mesh is clearly being rendered incorrectly. As if one of its verts has moved (considerably). But the vertex IntBuffer has not changed. (nor

Re: [android-developers] GLES/IntBuffer/?? Mis-placed verts?

2010-06-13 Thread Frank Weiss
I'm no GL expert by far, but is there possibly a debug or logging mode which might expose a calculation or data error? -- 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

[android-developers] Re: GLES/IntBuffer/?? Mis-placed verts?

2010-06-13 Thread Samsyn
Well, with that special hubris that comes just before you realize you did something super stupid: no, the code is PERFECT! :-) For some reason, I found some other threads talking about this (sort of) AFTER making my post (I looked first, honest!), but I guess those were sort of off-topic

[android-developers] Finalizing a Cursor that has not been deactivated or closed non-fatal error

2010-06-13 Thread arnoldl
Hello all, i'm getting a Finalizing a Cursor that has not been deactivated or closed error on this piece of code. The code is used to fill a listview. Since it's a non-fatal error , there is no crash and all works fine..but i don't like a error. If i close the cursor at the end of this code..the

[android-developers] how to test if app is installed on sd

2010-06-13 Thread arnoldl
Hello .. With froyo users can move a app to the sd card... How can i test if my app is on internam memory or on sd? 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: Activity within TabActivity: onResume not always called when tab selected?

2010-06-13 Thread Thierry Legras
It works. The exact code is: public void onTabChanged(String tabId) { if(TAG_B.equals(tabId)) { MyBActivity bActivity = (MyBActivity )getLocalActivityManager().getActivity(tabId); bActivity.refreshFromDB(); } } However it is a bit strange that

Re: [android-developers] Service Vs Thread

2010-06-13 Thread Olivier Guilyardi
On 06/13/2010 06:49 PM, tarek attia wrote: Thanks you so much for this clarification ,,exactly I want to make an application that keeps running while the user may went of the main application ,,and I guess Service will be the best candidate for doing that ,,, But what if the

Re: [android-developers] Service Vs Thread

2010-06-13 Thread Olivier Guilyardi
On 06/14/2010 12:00 AM, Olivier Guilyardi wrote: On 06/13/2010 06:49 PM, tarek attia wrote: Thanks you so much for this clarification ,,exactly I want to make an application that keeps running while the user may went of the main application ,,and I guess Service will be the best candidate for

[android-developers] Location distanceBetween()

2010-06-13 Thread Lars Nielsen Lind
Hi, we try to make use of Location distanceBetween() with local lat/lon and remote users lat/lon in order to get bearing. The method always return a negative value for instace -109. Anyone that knows how to make use of this? How do we translate it for instance to 0-360 degrees. We want to show

[android-developers] get IP and MAC address

2010-06-13 Thread shakeel
How to get IP address and MAC address. Thanks shakeel -- 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: OutOfMemoryError

2010-06-13 Thread svebee
Problem was 480x800 backgrond (~20KB) which after ~4 activity re- creates occupied ~16MB. After deleting, everything works just fine. On Jun 11, 12:07 pm, svebee sven.kapud...@gmail.com wrote: One is (background) 480x800, others are approx. 70x70px. (40x40,80x80,50x50...). I understood your

Re: [android-developers] get IP and MAC address

2010-06-13 Thread Mark H. Nichols
On Jun 13, 2010, at 5:39 PM, shakeel wrote: How to get IP address and MAC address. A quick Google search for get ip address in android app led me to this tread: http://osdir.com/ml/AndroidDevelopers/2009-03/msg02701.html And the android.net.wifi.getMacAddress() returns a string with the

[android-developers] Re: app can't run in full screen mode with avd 800*480 (skin wvga800)

2010-06-13 Thread Samsyn
Any chance you declared something like this in your manifest? supports-screens android:largeScreens = false / the described outcome of such a setting is something like what you describe, with your app displayed as a postage stamp with black borders on sides and bottom (but not top?) On Jun 13,

[android-developers] Re: How to catch a Done key press from the soft keyboard

2010-06-13 Thread Ken Hughes
Look here for an example. I'm guessing by the Done key you mean KEYCODE_DPAD_CENTER. http://developer.android.com/reference/android/app/Activity.html Ken On Jun 13, 3:32 am, oriharel ori.ha...@gmail.com wrote: Hi, how do I catch specific key events from the soft keyboard? specifically I'm

[android-developers] Re: How is the camera view angle determined in getHorizontalViewAngle ()?

2010-06-13 Thread Stephen Lebed
I'm bumping this thread because I could really use an answer. I'm developing an app on the G1 phone and I can't find any info on the focal length or field of view for the camera. If anyone has this info, or knows where I can find it I'd greatly appreciate it. The camera.getHorizontalViewAngle

[android-developers] How trigger intent to execute a specific method from a specific activity

2010-06-13 Thread Gabriel Simões
Hello, I´ve been searching a way to implement an intent so when a user clicks on a notification, an specific method from an activity is executed (or an specific behavior happens). Right now I´m thinking about using broadcast but I don´t know if this is the best way to implement this

[android-developers] Re: Spinners showing text in white with white background!

2010-06-13 Thread Gabriel Simões
Thanks... While this may work ... there´s a button in the list that appears also in the widget before the choosen option´s text. My spinner is small so the text doesn´t even appear. I guess I will have to give up the spinner . Thanks, Gabriel On 13 jun, 01:03, Seni Sangrujee

[android-developers] Re: How trigger intent to execute a specific method from a specific activity

2010-06-13 Thread Kumar Bibek
Broadcast will only work if your activity is in the foreground. If your activity is not yet started, you can however start it with specific data passed via bundle and in the onCreate() do specific task. If your activity is currently in the foreground, you need to listen to broadcasts. Thanks and

[android-developers] Re: Placing a bitmap image in ImageView

2010-06-13 Thread Kumar Bibek
BitmapFactory.Options bf = new BitmapFactory.Options(); bf.inSampleSize = 4; Bitmap bmp = BitmapFactory.decodeFile(path, bf); This will scale your bitmap to 1/4th of the original size Thanks and Regards, Kumar Bibek On Jun 12, 2:21 pm, pawan nimje pawanni...@gmail.com wrote: I tried this method

[android-developers] Re: Spinners showing text in white with white background!

2010-06-13 Thread Kumar Bibek
A better approach would be to create your own spinner adapter with a custom layout. If you try to use the androids', they might have been modified by the device manufacturers. And you wont have any control over that. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Jun 14, 6:46 

[android-developers] Re: How to send mms from my code

2010-06-13 Thread mike
hi sean, when i try to send a mms using your code it pop up a box to select a relevant application to send the message?? why is that regards, Mike -- 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] Location distanceBetween()

2010-06-13 Thread Frank Weiss
Why not do it yourself? The math is easy - Google is your friend: get bearing between two lat longs -- 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

[android-developers] Re: Market problems again

2010-06-13 Thread Zsolt Vasvari
I am not 100% sure. My app's ranking is much lower than it was before the problem. Not sure if it's related or not, but sure is a coincidence. cor...@gmail.com wrote: Issue appears to be resolved. -John Coryat- Hide quoted text - - Show quoted text - -- You received this message

[android-developers] Re: Spinners showing text in white with white background!

2010-06-13 Thread Bob Kerns
If you do that, then users will complain that your spinners are different than every other app on their device. Once device manufacturers start pulling stuff like this, there's no hope for us poor developers. Or our users. On Jun 13, 8:58 pm, Kumar Bibek coomar@gmail.com wrote: A better

[android-developers] Any standard Available on Android Market graphic?

2010-06-13 Thread patbenatar
Hey guys- I'm wondering if there is any sort of standard Available on Market graphic, similar to Apple's Available on the App Store graphic.. Or does every dev just make their own? Thanks! Nick -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Example gallery style view with fling, bounce, animation, etc.

2010-06-13 Thread droidful
In my other topics about animation methods and problems with gallery views I made mention of writing my own gallery view. I'm pretty new to Android but I found some helpful posts and helpful people on this group so I am posting up my code for the benefit of anyone who is curious. Feel free to