Search Results

2
votes
5answers
1k views

Android API for detecting new media from inbuilt camera & mic

Is there any elegant way in the Android API for detecting new media when it is written to the device? I’m mainly interested in photos taken by the camera, video taken by the camera and audio record …
0
votes
2answers
61 views

Android - Are services shared among processes?

I have an android library which is distributed as a jar file for inclusion in 3rd party applications. Within the jar file is an Android Service. The service is exposed through a facade cla …
4
votes

What are some good java make utilities?

Forget ANT!! Apache Maven is the way to go if you ask me. The feature i like the most is it built in in depend …
1
vote

Java: Serializing beginner problem :-(

in the exception handling blocks of the getStoredMails method you do not return anything. Suggested modification: public static Message[] getStoredMails(){ try …
0
votes

What is good way to learn java?

I would start by typing "java tutorial" into Google. Once you have the basics down you should look for sites and mailing lists that get more specific to the type of application you wish to create. …
3
votes

Monitoring memory usage for a C DLL called with Java via JNI?

You can monitor the native heap with counters in the performance montitor. (perfmon32) however it wont break it down for you on a per DLL basis, even jvm.dll will be included here. Most pro …
0
votes

Android API for detecting new media from inbuilt camera & mic

Yes i had noticed that Intent and was planning on using it for something else. But the user could decide not to keep the pic so although it would definitely be more efficient. It wouldn't be 100% r …
1
vote

Android API for detecting new media from inbuilt camera & mic

Aha! A content observer is what i need! …
0
votes

Android - Are services shared among processes?

OK i did a quick test on this. I modified the provided jar file to store values passed in the onBind Intent into 2 static variables. (stAppID and stAppVer) and print them out when a certain …