[android-developers] Speech Recognition Android API 8 10 second delay

2014-04-26 Thread dsurround
The speech recognition built into Android, supplied by Google, changed 
recently (within the last few months).  It used to recognize the end of 
speech within 2 seconds of the last utterance.  It now waits 10 seconds 
which is unacceptable to my voice based applications and an annoyance to 
any users.  The parameters to set that time delay do not work.  Will this 
be changed back so the default will be what it used to be?  I highly 
recommend that approach.  If not, please make the parameters have a real 
effect.  Please advise.

(My apps effected are Teachem US capitals, Talkteme and Tungs

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Does new Google Music Beta support end user selection of songs via intents

2011-05-30 Thread dsurround
Thanks Mark.  I tried the suggestion.  Unfortunately, it breaks the
app with the stock music player.  It may fix it with Music Beta, but I
didn't try that since it doesn't work properly with the default player
which is what most people have these days.   The UI doesn't give the
user the opportunity to pick a song to sing along with.   Do you have
any other suggestions?  Appreciate the assistance..

Dan

On May 29, 9:28 am, Mark Murphy  wrote:
> Try MediaStore.Audio.Media.CONTENT_TYPE instead, which maps to
> vnd.android.cursor.dir/audio. The MIME type you are using is
> undocumented.
>
>
>
>
>
>
>
>
>
> On Sun, May 29, 2011 at 9:13 AM,dsurround wrote:
> > I have an application that uses ACTION_PICK to allow the user to pick
> > a song.  Once that song is picked, the application uses the cursor
> > location and does another intent later on to show the NOW_PLAYING
> > interface.  The application worked fine until I installed Music Beta
> > on my droid device.  The application then began failing with
> > UnsupportedOperationException.  The intent and filters looked like
> > this:
>
> > Intent intent = new Intent(Intent.ACTION_PICK);
> > intent.setType("vnd.android.cursor.dir/track");
> > this.startActivity(intent);
>
> > I uninstalled Music Bata and the application again worked fine.
> > Wanted to see if this was a bug related to new Google music
> > application and see if anyone else was having this problem.
>
> > Here is the log:
>
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762): FATAL EXCEPTION: main
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762):
> > android.content.ActivityNotFoundException: No Activity found to handle
> > Intent { act=android.intent.action.PICK dat=
> > typ=vnd.android.cursor.dir/track }
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762):     at
> > android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:
> > 1408)
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762):     at
> > android.app.Instrumentation.execStartActivity(Instrumentation.java:
> > 1378)
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762):     at
> > android.app.Activity.startActivityForResult(Activity.java:2817)
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762):     at
> > djf.songing.Songing.onTouchEvent(Songing.java:124)
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762):     at
> > android.app.Activity.dispatchTouchEvent(Activity.java:2089)
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762):     at
> > com.android.internal.policy.impl.PhoneWindow
> > $DecorView.dispatchTouchEvent(PhoneWindow.java:1655)
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762):     at
> > android.view.ViewRoot.handleMessage(ViewRoot.java:1785)
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762):     at
> > android.os.Handler.dispatchMessage(Handler.java:99)
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762):     at
> > android.os.Looper.loop(Looper.java:123)
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762):     at
> > android.app.ActivityThread.main(ActivityThread.java:4627)
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762):     at
> > java.lang.reflect.Method.invokeNative(Native Method)
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762):     at
> > java.lang.reflect.Method.invoke(Method.java:521)
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762):     at
> > com.android.internal.os.ZygoteInit
> > $MethodAndArgsCaller.run(ZygoteInit.java:858)
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762):     at
> > com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
> > 05-27 08:44:19.882: ERROR/AndroidRuntime(17762):     at
> > dalvik.system.NativeStart.main(Native Method)
>
> > --
> > 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...@googlegroups.com
> > For more options, visit this group at
> >http://groups.google.com/group/android-developers?hl=en
>
> --
> Mark Murphy (a Commons 
> Guy)http://commonsware.com|http://github.com/commonsguyhttp://commonsware.com/blog|http://twitter.com/commonsguy
>
> _The Busy Coder's Guide to Android Development_ Version 3.6 Available!

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Does new Google Music Beta support end user selection of songs via intents

2011-05-29 Thread dsurround
I have an application that uses ACTION_PICK to allow the user to pick
a song.  Once that song is picked, the application uses the cursor
location and does another intent later on to show the NOW_PLAYING
interface.  The application worked fine until I installed Music Beta
on my droid device.  The application then began failing with
UnsupportedOperationException.  The intent and filters looked like
this:

Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("vnd.android.cursor.dir/track");
this.startActivity(intent);

I uninstalled Music Bata and the application again worked fine.
Wanted to see if this was a bug related to new Google music
application and see if anyone else was having this problem.

Here is the log:

05-27 08:44:19.882: ERROR/AndroidRuntime(17762): FATAL EXCEPTION: main
05-27 08:44:19.882: ERROR/AndroidRuntime(17762):
android.content.ActivityNotFoundException: No Activity found to handle
Intent { act=android.intent.action.PICK dat=
typ=vnd.android.cursor.dir/track }
05-27 08:44:19.882: ERROR/AndroidRuntime(17762): at
android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:
1408)
05-27 08:44:19.882: ERROR/AndroidRuntime(17762): at
android.app.Instrumentation.execStartActivity(Instrumentation.java:
1378)
05-27 08:44:19.882: ERROR/AndroidRuntime(17762): at
android.app.Activity.startActivityForResult(Activity.java:2817)
05-27 08:44:19.882: ERROR/AndroidRuntime(17762): at
djf.songing.Songing.onTouchEvent(Songing.java:124)
05-27 08:44:19.882: ERROR/AndroidRuntime(17762): at
android.app.Activity.dispatchTouchEvent(Activity.java:2089)
05-27 08:44:19.882: ERROR/AndroidRuntime(17762): at
com.android.internal.policy.impl.PhoneWindow
$DecorView.dispatchTouchEvent(PhoneWindow.java:1655)
05-27 08:44:19.882: ERROR/AndroidRuntime(17762): at
android.view.ViewRoot.handleMessage(ViewRoot.java:1785)
05-27 08:44:19.882: ERROR/AndroidRuntime(17762): at
android.os.Handler.dispatchMessage(Handler.java:99)
05-27 08:44:19.882: ERROR/AndroidRuntime(17762): at
android.os.Looper.loop(Looper.java:123)
05-27 08:44:19.882: ERROR/AndroidRuntime(17762): at
android.app.ActivityThread.main(ActivityThread.java:4627)
05-27 08:44:19.882: ERROR/AndroidRuntime(17762): at
java.lang.reflect.Method.invokeNative(Native Method)
05-27 08:44:19.882: ERROR/AndroidRuntime(17762): at
java.lang.reflect.Method.invoke(Method.java:521)
05-27 08:44:19.882: ERROR/AndroidRuntime(17762): at
com.android.internal.os.ZygoteInit
$MethodAndArgsCaller.run(ZygoteInit.java:858)
05-27 08:44:19.882: ERROR/AndroidRuntime(17762): at
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
05-27 08:44:19.882: ERROR/AndroidRuntime(17762): at
dalvik.system.NativeStart.main(Native Method)

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Text to speech on Tablet

2011-01-13 Thread dsurround
Are there any known problems for text to speech on a tab (galaxy tab)
versus a phone?  I have a customer that is using the newest samsung
tab 2.3 OS release and reported a problem where the text to speech
engine keeps repeating something over and over that should only be
spoken once.  The application (TUNGS) is working perfectly on a droid
phone 2.3 OS release.   Since I do not have a Samsung tab, I cannot
research the problem on the hardware.  No other reports of this
problem (>500 downloads).

Any insight would be appreciated.

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Speech Recognition for more then English

2009-10-27 Thread dsurround

Anyone have any idea when more languages will be added to Voice
Recognition Engine?  Would appreciate any insight out there.

Thanks,

dsurround
--~--~-~--~~~---~--~~
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Locale for Spanish missing?

2009-10-14 Thread dsurround

Use
myTts.setLanguage(new Locale("es"))

This works for spain.  Apparently, Java decided not to spell out all
locales a while back.

Wanted to post in case others are running into same problem.



On Oct 13, 9:15 am, dsurround  wrote:
> I am interfacing with the Text Synthesis engine of 1.6.  I am trying
> to set the language to Spanish.  I can set it to English, German,
> French and Italian, but Spanish does not come up as an option.
>
> myTts.setLanguage(Locale.SPANISH);  // this does not work
> myTts.setLanguage(Locale.GERMAN);  // this works along with ENGLISH,
> ITALIAN or FRENCH
>
> Seems like it should be there.  Is that a known bug?  I have looked
> through
> the forums, can't find anything. I can set it to SPANISH
> through the settings interface on the phone, but need to set it
> programatically.
> Please advise.
> 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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Locale for Spanish missing?

2009-10-13 Thread dsurround

I am interfacing with the Text Synthesis engine of 1.6.  I am trying
to set the language to Spanish.  I can set it to English, German,
French and Italian, but Spanish does not come up as an option.

myTts.setLanguage(Locale.SPANISH);  // this does not work
myTts.setLanguage(Locale.GERMAN);  // this works along with ENGLISH,
ITALIAN or FRENCH

Seems like it should be there.  Is that a known bug?  I have looked
through
the forums, can't find anything. I can set it to SPANISH
through the settings interface on the phone, but need to set it
programatically.
Please advise.
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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Text Synthesis Missing Spanish in setLanguage

2009-10-12 Thread dsurround

I am interfacing with the Text Synthesis engine of 1.6.  I am trying
to set the language to Spanish.  I can set it to English, German,
French and Italian, but Spanish does not come up as an option.

myTts.setLanguage(Locale.SPANISH);  // this does not work
myTts.setLanguage(Locale.GERMAN);  // this works along with ENGLISH,
ITALIAN or FRENCH

Seems like it should be there.  Is that a known bug?  I can set it
through the setting interface, but need to set it programatically.

Please advise.

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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Problem with creating AVD with 1.6 SDK

2009-10-02 Thread dsurround

Hi Xav, thanks for the reply.  I removed the post after I tried the
download again.  I noticed the platform files missing from that
directory and thought maybe there was a problem in unzipping and
moving the 1.6 directory.  That was it!

Thanks!

Dan

On Oct 2, 2:44 pm, Xavier Ducrohet  wrote:
> This is the first time I've seen this.
> What's the content of SDK/platforms/android-1.6 ?
>
> You might want to re-download the SDK (or at least unarchive again if
> you still have the archive)
>
> Xav
>
>
>
>
>
> On Thu, Oct 1, 2009 at 6:13 PM, dsurround  wrote:
>
> > I upgraded to the new SDK and I am using eclipse.
> > I attempt to create a new AVD following the directions.  I start up
> > Android in a command window so I can see what is failing.  I am
> > getting the following error(s):
>
> > C:\Users\Dad\Desktop\Java Programs\android-sdk-
> > windows-1.6_r1\tools>android
> > Starting Android SDK Updater
> > Error: Ignoring platform 'android-1.6': build.prop is missing.
> > Error: Ignoring add-on 'google_apis-4': Unable to find base platform
> > with API le
> > vel '4'
> > No command line parameters provided, launching UI.
> > See 'android --help' for operations from the command line.
> > Error: Ignoring platform 'android-1.6': build.prop is missing.
> > Error: Ignoring add-on 'google_apis-4': Unable to find base platform
> > with API le
> > vel '4'
> > 
> > Because of this error, I cannot create a target AVD for 1.6.
>
> > Any ideas what is wrong?  Please advise.
>
> > Thanks,
>
> --
> Xavier Ducrohet
> Android SDK Tech Lead
> Google Inc.
--~--~-~--~~~---~--~~
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Problem with creating AVD with 1.6 SDK

2009-10-01 Thread dsurround

I upgraded to the new SDK and I am using eclipse.
I attempt to create a new AVD following the directions.  I start up
Android in a command window so I can see what is failing.  I am
getting the following error(s):

C:\Users\Dad\Desktop\Java Programs\android-sdk-
windows-1.6_r1\tools>android
Starting Android SDK Updater
Error: Ignoring platform 'android-1.6': build.prop is missing.
Error: Ignoring add-on 'google_apis-4': Unable to find base platform
with API le
vel '4'
No command line parameters provided, launching UI.
See 'android --help' for operations from the command line.
Error: Ignoring platform 'android-1.6': build.prop is missing.
Error: Ignoring add-on 'google_apis-4': Unable to find base platform
with API le
vel '4'

Because of this error, I cannot create a target AVD for 1.6.

Any ideas what is wrong?  Please advise.

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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: old TTS vs new TTS in 1.6

2009-09-17 Thread dsurround

Thanks Mark, that is a better way to ask the question.  Seems like the
1.6 version was derived from the eyes-free TTS software.  I have a
running app that used TTS that I was just about to launch, so wanted
to get a feel for whether to hold off and adapt or just to go ahead
since it will continue to work.

Thanks again...

On Sep 17, 9:56 am, Mark Murphy  wrote:
> dsurround wrote:
> > Was the old TTS approach incorporated into the new SDK?
>
> Android did not have TTS prior to 1.6.
>
> You may be thinking of the eyes-free project:
>
> http://code.google.com/p/eyes-free/
>
> > If the old
> > TTS was used for an application, will it have to be changed because of
> > 1.6 update?
>
> Whether eyes-free works on Android 1.6 would be a question better asked
> in that project's group:
>
> http://groups.google.com/group/tts-for-android/
>
> The TTS in Android 1.6 seems very similar, but it has different class
> and package names.
>
> blindfold has already begun discussing helping people move from
> eyes-free to Android 1.6 TTS over in that project's group:
>
> http://groups.google.com/group/tts-for-android/browse_frm/thread/6807...
>
> --
> Mark Murphy (a Commons 
> Guy)http://commonsware.com|http://twitter.com/commonsguy
>
> Android Development Wiki:http://wiki.andmob.org
--~--~-~--~~~---~--~~
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] old TTS vs new TTS in 1.6

2009-09-17 Thread dsurround

Was the old TTS approach incorporated into the new SDK?   If the old
TTS was used for an application, will it have to be changed because of
1.6 update?  Please advise.

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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Youtube

2009-07-21 Thread dsurround

Is there any way to send parameters to G1 Youtube player when starting
it through an intent?  I want to prevent the related videos from
showing up once the video I've selected finishes playing.  Adding
commands to the URL being passed does not work.  Any help would be
appreciated.

Code snipet here (the &rel is not picked up by the player):

String youtubeUrl = "http://www.youtube.com/watch?
v=8PqI12R8YNU&rel=0";
Intent youtubeIntent;
startActivity (youtubeIntent = new Intent
(Intent.ACTION_VIEW,Uri.parse
 (youtubeUrl)))

Thanks

dsurround
--~--~-~--~~~---~--~~
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: URL commands when calling Youtube through Intent

2009-07-14 Thread dsurround

Jonathan, yes, I am using the G1 application natively.  I pass the
intent the youtube HTTP URL and youtube come up and begins playing the
requested video.

dsurround

On Jul 14, 5:47 pm, Jonapin  wrote:
> Hi,
> as the intent to use application that works natively on youtube?
> thanks
> Jonathan
>
> On 12 jul, 09:59, dsurround  wrote:
>
>
>
> > The standard Youtube URL commands (&loop, &rel, etc) do not seem to
> > work when calling Youtube via an INTENT from inside the android
> > application.  The videos play fine, Youtube app comes up fine, but the
> > additional URL commands don't appear to work.  Is there another set of
> > commands I should be using or are commands simply ignored using
> > Youtube in this manner.  Also, is there any documentation on the
> > interface from android to the Youtube app available on the net?
>
> > Thanks
>
> > dsurround
--~--~-~--~~~---~--~~
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] URL commands when calling Youtube through Intent

2009-07-12 Thread dsurround

The standard Youtube URL commands (&loop, &rel, etc) do not seem to
work when calling Youtube via an INTENT from inside the android
application.  The videos play fine, Youtube app comes up fine, but the
additional URL commands don't appear to work.  Is there another set of
commands I should be using or are commands simply ignored using
Youtube in this manner.  Also, is there any documentation on the
interface from android to the Youtube app available on the net?

Thanks

dsurround
--~--~-~--~~~---~--~~
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: uploads disabled

2009-07-08 Thread dsurround

The basic issue with G1 users today is the need to send a picture
somewhere (facebook, ebay, craigslist, etc), followed by simply
uploading other types of files for attachments in email.  To fix the
first problem, allowing access from the browser to the picture gallery
would work and I am not sure that is a big security issue given other
apps available access this folder.

On Jul 8, 6:29 am, John Smith  wrote:
> 2009/7/8 Charlie Collins 
>
>
>
> > I haven't heard any official stance on this, but I would imagine there
> > are security concerns, and then other technical hurdles on this front
> > (having a file browser, and then which files each activity has access
> > to).
>
> And the same security and techincal issues don't exist on PCs?
>
> It's trivial to do such a file browser code, others have created file
> browsers already and I don't think google staff would have an issue.
--~--~-~--~~~---~--~~
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: uploads disabled

2009-07-07 Thread dsurround

Thanks Charles, helps a bit, but this is a real pain for webview
development too so I hope we hear from the Android team...

Dsurround

On Jul 7, 4:19 pm, Charlie Collins  wrote:
> I haven't heard any official stance on this, but I would imagine there
> are security concerns, and then other technical hurdles on this front
> (having a file browser, and then which files each activity has access
> to).
>
> There is an open issue you can comment on and or follow 
> -http://code.google.com/p/android/issues/detail?id=2519.
>
> It's not the same, but I have seen people complain about being able to
> upload a picture or video or such, and in general you can still do
> that with the Intent.ACTION_SEND and the correct mime type. This adds
> your Activity to the list when someone selects "share" from the
> gallery, and so on, but it's not the same as the upload button from a
> browser for a web form.  The browser thing is "disabled," at least for
> now.
>
> Any more insight on this from the Android team would be great though -
> set the record straight for us (will it be enabled at some point, and
> what are the issues, etc).
>
> On Jul 7, 11:01 am, dsurround  wrote:
>
>
>
> > This problem in the browser has been written about for months, with no
> > response anywhere.  Some of the threads just stop, but the problem is
> > still there.  Can anyone shed some light on how to workaround the
> > problem in the browser when a web site allows for files (pictures,
> > etc) to be uploaded, but when done through the g1 browser, the button
> > says "uploads disabled".  Would appreciate any guidance at all.
>
> > 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@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] uploads disabled

2009-07-07 Thread dsurround

This problem in the browser has been written about for months, with no
response anywhere.  Some of the threads just stop, but the problem is
still there.  Can anyone shed some light on how to workaround the
problem in the browser when a web site allows for files (pictures,
etc) to be uploaded, but when done through the g1 browser, the button
says "uploads disabled".  Would appreciate any guidance at all.

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@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Picture Taking application

2009-04-14 Thread dsurround

Thanks Mark.  Yes, was trying to get the media scanner to work, but
gave up
after numerous tries.  Last attempt had me trying to debug the lack of
connection
to the media connection.  I spent so long on it, I decided to hold
that off til
the next release and build the power off / power on into the marketing
message
(no one will know you are taking pictures, even if they look in
pictures!).  I think
the problem may really be that people do not really know how to turn
the phone off
completely.  Some just think turning the screen of is all that was
neededI added
some to the documentation and the sales continue with less
complaining.



On Apr 14, 6:07 pm, Mark Anacker  wrote:
> Tell me about it.  I have a camera app (LokPixLite) that's dead solid
> on both the ADP1 and Emulator.  Never crashes, no matter what I throw
> at it.  So I release it into the wild, and people start complaining
> that they're getting Force Closed a lot.  So the G1 is definitely
> doing something differently than the ADP1 and the Emulator.
>
> As to interfacing with Pictures, have you tried calling the
> MediaScanner to refeesh it's view after saving the picture to SD?
>
> On Apr 10, 8:57 am, dsurround  wrote:
>
> > Any idea why a picture taking application works on some phones and not
> > on others?  The app was tested with the 1.1 emulator and the 1.0
> > developer phone.  Some customers reported that they could not find the
> > resulting pictures using the Picture application after they powered
> > off the phone and powered it back on to cause a new media scan.
> > Others find them just fine (in the dcim/camera directory).  Are there
> > any known conflicts for applications taking pictures?  The only other
> > thing I can think of is that the developer phone, currently at 1.0,
> > will function differently at 1.1, however,  the app works on the 1.1
> > version of the emulator.
>
> > Any ideas would be appreciated.
>
> > Thanks,
>
> > App is ear cam 1.1.
--~--~-~--~~~---~--~~
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Picture Application Conflicts? (may be duplicate, third attempt to post)

2009-04-12 Thread dsurround

Any idea why a picture taking application works on some phones and not
on others?  The app was tested with the 1.1 emulator and the 1.0
developer phone.  Some customers reported that they could not find the
resulting pictures using the Picture application after they powered
off the phone and powered it back on to cause a new media scan.
Others find them just fine (in the dcim/camera directory).  Are there
any known conflicts for applications taking pictures?  The only other
thing I can think of is that the developer phone, currently at 1.0,
will function differently at 1.1, however,  the app works on the 1.1
version of the emulator.

Any ideas would be appreciated.

Thanks,

App is ear cam 1.1.


--~--~-~--~~~---~--~~
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Picture Taking application

2009-04-12 Thread dsurround

Any idea why a picture taking application works on some phones and not
on others?  The app was tested with the 1.1 emulator and the 1.0
developer phone.  Some customers reported that they could not find the
resulting pictures using the Picture application after they powered
off the phone and powered it back on to cause a new media scan.
Others find them just fine (in the dcim/camera directory).  Are there
any known conflicts for applications taking pictures?  The only other
thing I can think of is that the developer phone, currently at 1.0,
will function differently at 1.1, however,  the app works on the 1.1
version of the emulator.

Any ideas would be appreciated.

Thanks,

App is ear cam 1.1.



--~--~-~--~~~---~--~~
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Picture Taking Application (may be duplicate posting)

2009-04-12 Thread dsurround

Any idea why a picture taking application works on some phones and not
on others?  The app was tested with the 1.1 emulator and the 1.0
developer phone.  Some customers reported that they could not find the
resulting pictures using the Picture application after they powered
off the phone and powered it back on to cause a new media scan.
Others find them just fine (in the dcim/camera directory).  Are there
any known conflicts for applications taking pictures?  The only other
thing I can think of is that the developer phone, currently at 1.0,
will function differently at 1.1, however,  the app works on the 1.1
version of the emulator.

Any ideas would be appreciated.

Thanks,

Application is published as ear cam 1.1.


--~--~-~--~~~---~--~~
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---