[android-developers] Re: 2.3: WebView's JavaScriptInterface throwing exception 100% of time

2010-12-08 Thread jsdf
7;t affect the production builds... > > tony > > On Dec 7, 8:10 am, jsdf wrote: > > > Hi all, > > Has anyone played with the 2.3, WebViews, and the JavaScript to Java > > interface? > > If so, have you gotten it working? > > > I, and a number of

[android-developers] 2.3: WebView's JavaScriptInterface throwing exception 100% of time

2010-12-07 Thread jsdf
Hi all, Has anyone played with the 2.3, WebViews, and the JavaScript to Java interface? If so, have you gotten it working? I, and a number of others, have seen this fail 100% of the time. http://code.google.com/p/android/issues/detail?id=12987 This is a very serious issue. Anyone have suggestion

[android-developers] Re: Apps missing in publisher console

2010-11-24 Thread jsdf
Here as well. 5 of our 13 have gone missing. On Nov 24, 3:55 pm, Nicolas Thibaut wrote: > me too. > > I have added the uses feature suggested and try to load high res icon, > my app is now hidden :'( > > On 24 nov, 22:29, Robert Green wrote: > > > I'm glad it's not just me! > > > On Nov 24, 1:

[android-developers] Re: adb can't find my Verizon Samsung Galaxy Tab ...

2010-11-13 Thread jsdf
I had to unplug it from the computer. Then I could check the check box. This was on a T-Mobile tab, your mileage may vary. On Nov 13, 12:09 am, OldSkoolMark wrote: > The 'enable USB debugging' setting is greyed out and unselectable. It > didn't work out of the box, so I installed the Samsung Kie

[android-developers] 1024x600 emulator: no access to 'menu' or other buttons

2010-09-02 Thread jsdf
rtant buttons to appear in the emulator? Thanks. jsdf -- 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-deve

[android-developers] Re: Android Market Abusive developers...

2010-08-06 Thread jsdf
For what it's worth, BlackBerry App World has a form of this. You pay $200, and are given ten "submissions", after which you need to renew for another $200. Each "submission" triggers a manual review process. While I don't agree with the high price/submission or the manual review process, I do t

[android-developers] Larger screen support

2010-08-06 Thread jsdf
Hi all, We need to build support for screens larger than WVGA (480x800) and FWVGA (480x854). For example, let's say there is a device that supports 1024x768. Ideally, I would like to use Android's res folder structure (e.g. res/layout-large) to automatically provide a different layout for even la

[android-developers] You should use query bindings with "?" in SQLite

2010-07-19 Thread jsdf
I found this error message interesting. I have only seen it on an Android 2.2 device. "Reached MAX size for compiled-sql statement cache for database /data/ data/com.application.android/databases/data; i.e., NO space for this sql statement in cache: UPDATE cse SET updatetime=? WHERE slug='My_slug

[android-developers] Re: HTTP progressive streaming

2010-07-14 Thread jsdf
I can't comment on all of the options you give below, but I can assure you it is not HTTP Live Streaming (HLS). Oh, having that in the network stack would be grand. On Jul 13, 3:21 pm, Michel wrote: > On top of that my question is what is "HTTP progressive streaming" > standing for? > Is that a

[android-developers] Re: EVO failing in MediaPlayer

2010-07-12 Thread jsdf
On Jul 11, 6:55 pm, Mark Murphy wrote: > On Sun, Jul 11, 2010 at 7:41 PM, jsdf wrote: > > Sorry to push to the top, but has anyone seen anything like this? > > I haven't, but then again I haven't used MediaPlayer on an EVO yet. I > have played back videos on an EVO,

[android-developers] Re: EVO failing in MediaPlayer

2010-07-11 Thread jsdf
Sorry to push to the top, but has anyone seen anything like this? Does anyone have any suggestion? On Jul 7, 8:46 pm, jsdf wrote: > All, > We are seeing some very strange results in media playback on HTCEVO > devices. > > In our call to MediaPlayer.create(getApplicationContext(),

[android-developers] EVO failing in MediaPlayer

2010-07-07 Thread jsdf
(MediaPlayer.java:658) W/System.err( 404): at android.media.MediaPlayer.create(MediaPlayer.java:640) Has anyone encountered anything like this? Anyone have suggestions on how to diagnose? This code works just fine for many, many thousands of other devices out there. Thanks in advance, jsdf -- You

[android-developers] Re: Bump is letting users send paid apps?

2010-07-01 Thread jsdf
Jake, thanks for clarifying. I didn't have access to a second phone, and wanted to check with others who I know do. Namely, this group... On Jun 30, 11:33 pm, Bob Kerns wrote: > Congratulations on a very cute and clever idea. I really hope it > catches on -- and that it makes you a lot of money

[android-developers] Bump is letting users send paid apps?

2010-06-29 Thread jsdf
remote uninstalling Bump, and instead promoting it in the Android Market? (I haven't tried actually sending the paid app, so maybe it fails at that point - can anyone confirm? I hope to be proven wrong here) (I saw this using a Nexus One) jsdf -- You received this message because yo

[android-developers] Re: Moving CursorAdapter cursor creation to background thread

2010-03-30 Thread jsdf
Neat. I'll give it a go. Thanks for the advice! -- 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+unsu

[android-developers] Re: Moving CursorAdapter cursor creation to background thread

2010-03-30 Thread jsdf
On Mar 29, 11:52 am, Mark Murphy wrote: > jsdf wrote: > > I then thought of trying to load the cursor in abackgroundthread, > > but realize that this might be problematic, as theCursorAdapter > > should be instantiated in onCreate() and should take a cursor as a > > p

[android-developers] Moving CursorAdapter cursor creation to background thread

2010-03-29 Thread jsdf
Hi all, The structure of some of my activities is a simple ListView with a custom CursorAdapter. The cursor is created in onCreate() on the activity from a SQLite database. The problem is that querying the SQLite database can be quite slow at times with lots of data (and let's assume I've already

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-24 Thread jsdf
N1 received in Chicago, IL. On Mar 24, 10:52 am, polyclefsoftware wrote: > Got my Nexus One today via FedEx. I'm in Lafayette, Louisiana USA. > > Has anyone in the US gotten a Droid? I'm happy with the Nexus...just > wondering. -- You received this message because you are subscribed to the Goog

[android-developers] Re: Reusing intents with notification/pending intents

2009-11-23 Thread jsdf
and my activity is defined in AndroidManifest as: Thanks for any suggestions you might have. jsdf On Nov 21, 1:41 pm, jotobjects wrote: > Can you show us the code you used to create the PendingIntent? > > On Nov 21, 7:04 am,jsdf wrote: > > > Does anyone hav

[android-developers] Re: Reusing intents with notification/pending intents

2009-11-21 Thread jsdf
Does anyone have suggestions on this? I appreciate the help! On Nov 19, 5:38 pm, jsdf wrote: > Hi all, > A quick question (for those who know the answer, anyway): > > In my app, user starts a service and shows a notification from > activity A. > The notification creates a Pendi

[android-developers] Reusing intents with notification/pending intents

2009-11-19 Thread jsdf
uplicating activities? Thanks, jsdf -- 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+unsubscr...@

[android-developers] Re: Zoom out on the emulator

2009-11-09 Thread jsdf
Great, thanks guys. On Nov 9, 10:59 am, David Turner wrote: > emulator -scale 0.5 > > to scale the emulator window 50% > > you can also change the scale dynamically at runtime through the console > (window scale ) > > On Mon, Nov 9, 2009 at 8:39 AM, jsdf wrote: > &

[android-developers] Zoom out on the emulator

2009-11-09 Thread jsdf
with Android. I browsed quickly through the options, but could find nothing. Thanks, jsdf -- 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: java.lang.IllegalStateException: Content of adapter changed but ListView didn't

2009-10-22 Thread jsdf
Would using a CursorAdapter tied to a database be a solution to this? When the database changes, the cursor can auto-requery the database (per the constructor's argument). Will this prevent IlllegalStateExceptions? On Oct 21, 9:34 pm, jsdf wrote: > pawpaw17, > Any luck with this? &

[android-developers] Re: java.lang.IllegalStateException: Content of adapter changed but ListView didn't

2009-10-21 Thread jsdf
pawpaw17, Any luck with this? Has anyone else come up with solutions for this? We are experiencing similar (sporadic) results. Thanks, jsdf On Oct 10, 11:22 pm, pawpaw17 wrote: > I'm getting an unhandled exception in my class that fills an > arrayadapter from items in a database: &

[android-developers] Connection speed?

2009-10-13 Thread jsdf
Hi all, Is there a way to determine connection speed? E.g. EDGE, 3G, etc.? I already know NetworkInfo.getType() will tell me Wifi or Mobile. I'm looking at Is this NetworkInfo.getSubtypeName(), but the function is undocumented. Thanks,

[android-developers] Re: VerifyError and Content Providers

2009-10-09 Thread jsdf
contains the CONTENT_URI definition, and > reference that JAR from both APKs. Great, thanks. I appreciate the help, Mark. jsdf --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group.

[android-developers] Re: VerifyError and Content Providers

2009-10-09 Thread jsdf
Does anyone have suggestions on this? Has anyone encountered this issue and corrected it? Thanks, jsdf On Oct 8, 3:17 pm, jsdf wrote: > Hi all, > I've been struggling with what seems like a straightforward issue for > some time now, and any suggestions would be appreciated. >

[android-developers] VerifyError and Content Providers

2009-10-08 Thread jsdf
original app (with the content provider) in the "Projects" build path. Is this an issue with using complex data sources (e.g. android.net.Uri)? Is this a build or link problem? What build suggestions do you all have to getting around this? Thanks so much, jsdf --~--~-~--~~

[android-developers] Stripping Log._ out of production

2009-10-02 Thread jsdf
, but then immediately disregard the results? Obviously, I prefer the former (fewer ops = better), but I don't know how to check for this. Thanks, jsdf --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Develo

[android-developers] Re: MediaRecorder does'n work with incoming calls stream

2009-09-11 Thread jsdf
On Sep 6, 10:05 am, fritzZz wrote: > I have founded some app that records incoming calls, how do they > work? Are you sure they record incoming calls from both ends? I would think they can only record what the application owner is saying, and not what is coming down the call pipe. After extensi

[android-developers] Re: Cannot upload "Promotional Graphic" to Android Market

2009-09-10 Thread jsdf
on > FireFox. > I still cannot upload a PNG as a 'promo image'. > > On Sep 8, 9:40 am, Streets Of Boston wrote: > > > Try it on any other browser than IE8, if that's the one you're using. > > When i used FireFox, all went fine. > > > On Sep 8

[android-developers] Re: Cannot upload "Promotional Graphic" to Android Market

2009-09-08 Thread jsdf
must be a PNG or > > JPEG image file". > > > Regards > > Don > > > On Fri, Sep 4, 2009 at 5:44 PM, Streets Of Boston > > wrote: > > > > Same here. > > > In addition; i cannot upload any image (screenshots). They are there > > > fo

[android-developers] Cannot upload "Promotional Graphic" to Android Market

2009-09-04 Thread jsdf
seeing the same issue? Thanks, jsdf --~--~-~--~~~---~--~~ 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: Failure [INSTALL_FAILED_MISSING_SHARED_LIBRARY]

2009-09-04 Thread jsdf
Yes, that did it. I was using an AVD that was not built with Google libraries. Thanks for the nudge. jsdf On Aug 29, 6:41 pm, Dianne Hackborn wrote: > Apparently your app needs Google's maps library.  That library is not in the > emulator image you are using.  I am pretty sure

[android-developers] Re: Hmm... at last ADC2 is out of our way ... tell about your app and experience

2009-09-02 Thread jsdf
nnels on device or at Mediafly.com for free - Lots of Popular Channels to get started - Sync across many devices (e.g. iPhone) - No ads!" By: Mediafly, Inc. and jsdf, LLC Feedback: This is our (jsdf, LLC's) third app in the market, and while the transition from traditional Java to And

[android-developers] Re: Suggestions on how to stop threads with long operations?

2009-08-31 Thread jsdf
should continue with this path and let the threads expire with my current methods. Thanks, jsdf --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send e

[android-developers] Re: Suggestions on how to stop threads with long operations?

2009-08-31 Thread jsdf
Does anyone out there have thoughts on this? Thanks, jsdf On Aug 28, 5:56 pm, jsdf wrote: > Hi Android experts, > I have a tricky question that I would like some advice on. > > I have a thread that does a large amount of network and database > work.  E.g.: > > ne

[android-developers] Re: Failure [INSTALL_FAILED_MISSING_SHARED_LIBRARY]

2009-08-29 Thread jsdf
Dianne, Yes, the log tells me that my package "requires unavailable shared library com.google.android.maps". When I take out the from my manifest, it loads successfully. On launch, I get an error: "Unable to resolve superclass of Lcom/jsdf/app/map/MapViewActivity;" And,

[android-developers] Re: Play audio over an active phone call, so other end can hear it

2009-08-29 Thread jsdf
tcp, No, I haven't been able to find anything. Looks like it was either overlooked or intentionally decided against. jdsf --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this gro

[android-developers] Failure [INSTALL_FAILED_MISSING_SHARED_LIBRARY]

2009-08-29 Thread jsdf
o external libraries, Flurry and AdMob. I have also tried rebuilding my project from scratch, with the same results. The very odd thing is that this does not happen when I install the release version to my phone via downloading an .apk file. Does anyone have suggestions on how to proceed? Th

[android-developers] Suggestions on how to stop threads with long operations?

2009-08-28 Thread jsdf
? Thanks so much in advance, jsdf --~--~-~--~~~---~--~~ 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 g

[android-developers] Re: Move focus to top of activity on create

2009-08-28 Thread jsdf
() { public void run() { main.scrollTo(0,0); } }); and achieved the desired results. (source: http://groups.google.com/group/android-developers/browse_thread/thread/1a36f62df821d771 ) jsdf --~--~-~--~~~---~--~~ You received this message because

[android-developers] Move focus to top of activity on create

2009-08-26 Thread jsdf
ng. I then tried main.scrollTo(0,0); This also did nothing. I then tried sending the message from onResume instead of onCreate. This also did nothing. Does anyone have suggestions as to how to force the scrollview to actually scroll? Thanks,

[android-developers] Re: Play audio over an active phone call, so other end can hear it

2009-08-08 Thread jsdf
or both #1 and #2 are true? Thanks for the help, jsdf On Aug 7, 1:24 pm, Marco Nelissen wrote: > The hardware doesn't support it. The closest you can get is by playing > it over the speaker at full volume, so the microphone will pick it up. > > On Fri, Aug 7, 2009 at 9:26

[android-developers] Play audio over an active phone call, so other end can hear it

2009-08-07 Thread jsdf
this something that could become accessible on rooted phones? (Of course, only other rooted phones would be able to use the application then...) Thanks, jsdf --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "An

[android-developers] Re: Default number of Views constructed for a BaseAdapter?

2009-08-05 Thread jsdf
On Jun 27, 12:56 am, Peter wrote: > > There's not a default number of views created for an adapter. Alist > > creates as many views as it needs to fill the screen. Views get reused > > only when you start scrolling or when the adapter send a > > notifyDatasetChanged(). You say you have a thread

[android-developers] Re: URGENT!!!!! Can't update apps in android market!!!

2009-04-28 Thread jsdf
the top of , which finally fixed this problem. I hope this helps others who are still having this problem. I will post a bug report now. Jason On Apr 27, 9:03 pm, aleung wrote: > I was using 1.1 SDK and failed to publish. > I haven't tried 1.5 SDK yet. > > On Apr 27, 10:25 pm,j

[android-developers] Re: URGENT!!!!! Can't update apps in android market!!!

2009-04-27 Thread jsdf
cause of this line: > > > The Android blog said that Google Maps API is a plugin in the 1.5 SDK. > I'm now downloading the 1.5 SDK early look to have a try. > > On Apr 26, 12:05 pm,jsdf wrote: > > > Even with "1" this does not work. I still get "The serve

[android-developers] Using SDK 1.5 to build 1.1 apps?

2009-04-27 Thread jsdf
Hi all, I've been playing with the 1.5 SDK recently, and understand it contains both 1.1 and 1.5 within. The release notes contain this dire warning: "Note: This is an early look SDK only. The tools and documentation are not complete. The API reference documentation for the early look SDK is prov

[android-developers] Re: URGENT!!!!! Can't update apps in android market!!!

2009-04-26 Thread jsdf
id blog said that Google Maps API is a plugin in the 1.5 SDK. > I'm now downloading the 1.5 SDK early look to have a try. > > On Apr 26, 12:05 pm, jsdf wrote: > > > Even with "1" this does not work. I still get "The server could not > > process your apk. Try

[android-developers] Re: URGENT!!!!! Can't update apps in android market!!!

2009-04-25 Thread jsdf
Even with "1" this does not work. I still get "The server could not process your apk. Try again." I've pasted the relevant AndroidManifest.xml code below. Is there anything else that is wrong? Perhaps use of the custom Application (vs. the default Application) is throwing the XML parser for a lo

[android-developers] Re: URGENT!!!!! Can't update apps in android market!!!

2009-04-25 Thread jsdf
I am also getting this error. All I did, beyond incrementing my android:versionCode by one, was add: to the XML. After that, I cannot upload any upgrade. Jason --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Androi

[android-developers] ImageButton flash orange when background image is set?

2009-03-26 Thread jsdf
Hi all, I've set the background image of a custom ImageButton I am building, as well as setClickable(true) and setFocusable(true). The button is able to receive focus when I navigate with DPad/arrow keys in the emulator, however, it does not flash orange when it has the focus. It does not appear

[android-developers] Link to app in Android Market?

2009-03-24 Thread jsdf
Hi everyone, Does anyone know how to create a link to an Android app in the Market that can be accessed from the phone? E.g. is it something like android://abc.def ? I've seen this done before but don't know where I saw it or how it was done (I know, not very helpful...) Thanks! --~--~-

[android-developers] Re: MapViewActivity must be touched for refresh on device

2009-03-15 Thread jsdf
On Mar 15, 6:11 pm, jsdf wrote: > On Mar 15, 5:24 pm, jsdf wrote: > > > Hi everyone, > > My application has a MapViewActivity that periodically refreshes the > > points on the map by polling a server. > > On the emulator, when the refresh occurs, the populate()

[android-developers] Re: MapViewActivity must be touched for refresh on device

2009-03-15 Thread jsdf
On Mar 15, 5:24 pm, jsdf wrote: > Hi everyone, > My application has a MapViewActivity that periodically refreshes the > points on the map by polling a server. > On the emulator, when the refresh occurs, the populate() method > redraws the points on the screen, and the objects ap

[android-developers] MapViewActivity must be touched for refresh on device

2009-03-15 Thread jsdf
Hi everyone, My application has a MapViewActivity that periodically refreshes the points on the map by polling a server. On the emulator, when the refresh occurs, the populate() method redraws the points on the screen, and the objects appear to move on the map. On the G1, however, populate() does

[android-developers] Re: Merchant account signup down?

2009-03-13 Thread jsdf
Okay, now we are getting somewhere: http://androidcommunity.com/android-market-paid-app-system-blocking-new-merchants-20090313/ On Mar 13, 7:20 am, jsdf wrote: > 50 hours down and counting. > Can anyone from Google help here? > Romain?  Dianne?  Anyone else? > > On Mar 12, 8:35 p

[android-developers] Re: Merchant account signup down?

2009-03-13 Thread jsdf
50 hours down and counting. Can anyone from Google help here? Romain? Dianne? Anyone else? On Mar 12, 8:35 pm, Jesse McGrew wrote: > Still down for me too, by the way. This isn't something we're doing > wrong, the system is just broken. > > Jesse > > On

[android-developers] Re: Merchant account signup down?

2009-03-12 Thread jsdf
ails to support for a few weeks to get it all straight, but > in the end, to Google's credit, they worked it all out. > > On Mar 12, 10:02 am,jsdf wrote: > > > Unfortunately, 24 hours later, it is still down. > > And, I check with a friend who works at Google, but he's i

[android-developers] Re: Merchant account signup down?

2009-03-11 Thread jsdf
, 10:03 am, "keith_hi...@yahoo.com" wrote: > I am having the same issue. Been trying since yesterday to get this > resolved. Google as of yet has not responded to my tech support > request. > > On Mar 10, 9:16 pm,jsdf wrote: > > > I am trying to sign up for a merchant

[android-developers] Re: Merchant account signup down?

2009-03-11 Thread jsdf
Bump! It's been down for 15 hours for me now. I submitted a help request to Google, but of course it probably got routed to the black hole that is tech support. Please can anyone confirm?? Anyone from Google able to help on this?? Thanks. On Mar 10, 8:16 pm, jsdf wrote: > I am trying

[android-developers] Merchant account signup down?

2009-03-10 Thread jsdf
I am trying to sign up for a merchant account but it seems to be down: "Sorry, we could not setup your merchant account. Please try again later." Can anyone else confirm this, or is it just my login? Thanks. --~--~-~--~~~---~--~~ You received this message because

[android-developers] Launching a dialog from preferences?

2009-03-07 Thread jsdf
Hi, Is there a way to launch a dialog (say, the dialog I show to users the first time they launch the app) from a preferences entry? I don't see any examples doing this in the API Demos, nor have I seen it out in the wild. I do see a class called DialogPreference, but this doesn't seem to be wha

[android-developers] Flashing a spannable or textview when data changes

2009-03-02 Thread jsdf
. Is this a method/feature that is already done, or do I need to get fancy with threads? Thanks, jsdf --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send e

[android-developers] Loading animation throbber?

2009-02-26 Thread jsdf
Hi all, I've seen a variety of applications show a throbber on the screen when the app is loading or getting data from the web, etc. Good examples of these are: 1.) K-9: when you click on an account, you see "Loading messages" and a yellow-ish throbber appear while your messages load. Or, if you

[android-developers] Context menus for TableRow?

2009-02-22 Thread jsdf
Hi all, I'm stumped. I have a table with data rows that are dynamically created. I am trying to map a context menu to each table row that shows "Delete item", and on click, lets me delete the item. Simple, right? The problem is that my onContextItemSelected(MenuItem item) handler always has a n