Is an std::vector implementation available on android?

2009-06-23 Thread Elvis Dowson
Hi, Is an std::vector implementation available for me to use in an android JNI native library? Elvis --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups android-framework group. To post to this group, send email

How to send email using my application?

2009-06-23 Thread devendra
Hi, After execution of following above code, it shows compose screen of mms.apk application with blank fields. However, my requirement is that my application should be able to send email automatically with my supplied information. Do I need to install any other email apk apart from mms.apk or

Re: HW Codec integration with opencore

2009-06-23 Thread thinku
thanks ravi.. i see, everybody are asking to proceed through the OMX complaint codec integration. but is there any strong reason that we need to use the OMX complaint codec.. since we have other alternate ways.. like software codec calls replaced with HW codec.. here i can avoid additional

Re: Is an std::vector implementation available on android?

2009-06-23 Thread Elvis Dowson
Hi, To answer my own question, I think not! :-) I did however, find a ustl library implementation in one of the framework projects. So I'll try to build ustl as a separate dedicated external library project. Elvis On Jun 23, 10:48 am, Elvis Dowson elvis.dow...@gmail.com wrote: Hi,       Is

Re: HW Codec integration with opencore

2009-06-23 Thread RaviY
OpenMAX is a standard. So, it's interface is pretty much going to be the same. If you integrate your codec under the OMX wrapper, you would be able to use it across many OMX compliant platforms. -Ravi On Jun 23, 4:07 am, thinku sunthin...@gmail.com wrote: thanks ravi.. i see, everybody are

Re: synchronous service startup

2009-06-23 Thread Mike Hearn
it's a bit hard to figure out what you want from this email, I assume you're talking about this: http://www.google.com/codesearch/p?hl=ensa=Ncd=1ct=rc#3aMARKchqsQ/trunk/AndroidTTS/src/android/tts/Tts.javaq=TTS%20android I agree this API is a bit questionable, but I don't see the problem.

cerrno equivalent in android

2009-06-23 Thread Elvis Dowson
Hi, Which android library file is the equivalent of the cerrno library file? I've included a small code snipped of how it works on native linux platform. #include cerrno /* * Direct all SIGIO and SIGURG signals for the port to the current * process. */ if ( fcntl(

Any idea on what is scheduleBroadcast in Surface Flinger ?

2009-06-23 Thread AbdulRahman
Any idea on what is scheduleBroadcast in Surface Flinger ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups android-framework group. To post to this group, send email to android-framework@googlegroups.com To

SystemServer permissions ..

2009-06-23 Thread Dan Raaka
System server is starting up other services, however, towards the end, if we were add any code to access any of the started services, it throws out a error saying PERMISSION not defined. E/SystemServer( 1861): java.lang.SecurityException: Requires ACCESS_FINE_LOCATION permission The general

Re: SystemServer permissions ..

2009-06-23 Thread Dianne Hackborn
The system process gets all permissions (it is, after all, the one that manages and enforces permissions). What is the stack crawl of the exception? On Tue, Jun 23, 2009 at 3:53 PM, Dan Raaka danra...@gmail.com wrote: System server is starting up other services, however, towards the end, if

Re: SystemServer permissions ..

2009-06-23 Thread dan raaka
2 lines all that was added .. *mLocationManager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE); mLocationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, new GpsListener());* Here is the trace E/SystemServer( 1861): java.lang.SecurityException: Requires

Re: synchronous service startup

2009-06-23 Thread Craig
On Tue, Jun 23, 2009 at 9:51 PM, Mike Hearnmh.in.engl...@gmail.com wrote: it's a bit hard to figure out what you want from this email, I assume you're talking about this:  

AnalogClock AppWidget dial

2009-06-23 Thread Ravi
Using Appwidgets, If we use TextView in layout provider xml then, we are able to set the text in Provider.java using remoteViews.setTextViewText() method. Similarly, if I use AnalogClock as AppWidget in xml then, is there any method available to change the android:dial value using RemoteViews or

Re: Problem in thumbnail capture.

2009-06-23 Thread Veda K
Hi Ravi, I'm dealin wit thumbnails for media files. I have seen that but the problem is, you get the cursor for all media files on external storage, how do i extract separate file info to capture the thumbnails ? The link you hav sent is for Images. I'm attaching that line of code, suggest me

Re: cerrno equivalent in android

2009-06-23 Thread Elvis Dowson
Hi, Thanks everyone, yes that's exactly what I ended up using. I thought I'd do a search pattern using eclipse search for strerror (errno) and that help me track down a couple of implementations, and I settled on # include errno.h Elvis --~--~-~--~~~---~--~~