0
votes
0answers
21 views

How can I code a client-server Java program that uses the client computer's monitors as second or third monitors for the server one?

In short I am interested in a Java code that allows a computer to: 1) think it has a second monitor (virtual monitor without having a device atached) 2) regulairly extract pixel information from ...
1
vote
0answers
187 views

Changing Iphone/Android Wifi into monitor mode

does anyone knows how to change Iphone and Androids WIFI into a monitor mode? I want to write an App that collects all the Probe Request Frames from all WIFI-Devices to analyse them. Thanks in ...
1
vote
0answers
53 views

determining internet speed in android

I am developing an android video-streaming application where I must detect internet speed to adjust my stream quality according to that speed. I've searched in the net about how to detect internet ...
0
votes
1answer
103 views

How to properly monitor and log Android OS events/activity in the background

I would like to know the correct way to monitor system events and operating system activity in Android. My research so far indicates there are various methods for running Activities, Services, ...
0
votes
0answers
44 views

pairing established connection with application

I am trying to create simple "watchdog" as a school project. I've started with monitoring background calls, sms. Now I want to do something with network connections. I am able to list connections, but ...
1
vote
1answer
196 views

Does Android(on ARM) have the hardware performance counters?

So like in Linux on Intel processor, we have a large amount of hardware performance counters to access. Like previously, using a user-space software called perfmon2, I could get values of cache miss ...
1
vote
0answers
38 views

Is there a way to use Python to emulate a non visible external monitor, and capture the video data from it?

Beginning with the end in mind, I am looking into creating an Android app that would act like iDisplay, or AirDisplay. Both of the aforementioned apps are used on an Android device to act like a ...
0
votes
0answers
45 views

Display a single, specified call from CallLog

i'm working at an android applicationand i've managed to monitor outgoing and receiving calls and save number,date into a database. BroadcastReceiver callRcv = new BroadcastReceiver() { ...
1
vote
0answers
100 views

SoundManager and monitorenter and monitorexit

I try to control sound with monitorenter and monitorexite this the code i use but this not work for me these erorrs shown : monitorenter cannot be resolved to a variable , monitorenter cannot be ...
0
votes
0answers
77 views

Android: how to tag photos and monitor camera [closed]

hi guys i want to monitor camera through a service.the service must monitor camera and when the camera takes a photo, the application opens a new activity with the picture you have just taken, and ...
1
vote
0answers
101 views

Monitor data activity in Android [closed]

I'm trying to make a built-in Juice Defender option in a ROM I'm helping to build. I have a bunch of that I'm looking for, but I can't find a call to see if data is in use. The idea is if data is ...
0
votes
2answers
331 views

Android Emulator: How can I get a list of services that are running

I have the Android Emulator running in my Ubuntu VM and just installed an apk file trough the console. The emulator and adb have many options to view what is going on on the device. But how can I get ...
0
votes
3answers
283 views

How to monitor user click on an url and extract the url?

I'm doing a project which can detect phishing website. I.e. when a user tap on a link when they browsing a webpage in a browser, the link will be check if it is a phishing webpage. However, I do not ...
2
votes
0answers
340 views

ActivityMonitor on Intent filter ACTION_SENDTO not hit

I am writing a JUnit test for an activity that launches the default mail client of the device. I want to validate that the "Send To" activity is started and then send a click event to the "Send" ...
7
votes
6answers
5k views

Constantly getting …DeviceMonitor] Failed to start monitoring

I find that after running or debugging my application a few times using eclipse, that I get the above output in my console (in red) and I get no feedback from Dalvik as to the connection status to my ...
2
votes
1answer
161 views

AsyncTask and Monitors

Here is my problem: I need to do several requests on a server. These requests have to be made one after the other in order to avoid mixing. For that, I'm using monitors. Here is what I've come up so ...
0
votes
2answers
129 views

How to monitor intends produced inside activity in ActivityTestCase?

How to monitor intends produced inside activity in ActivityTestCase? I need to get all intends produced by activity and assert on their data Thanks
0
votes
1answer
381 views

Google AdSense monitor android app

I thought that i can use oauth to login to my AdSense account page to view how much i've earned today, but it seems that AdSense is not in oauth list duplicate of this post and this one ...
2
votes
2answers
2k views

How to constanly monitor LogCat file?

I need to somehow monitor the LogCat log, meaning that while my service is running I need to read the LogCat for new entries. At this moment I know only how to retrieve once the Log: Process ...
2
votes
1answer
537 views

Use a service to monitor when other activites/applications start or end

Is it possible to make a service running in backgroud to be notified when an arbritary activity/application is started and ended by a user? I want to use it to log how often and for how long different ...