In the Observer pattern, an event handler is the function or method called on an observer listening for an event dispatched by the subject. Also known as an event listener.

learn more… | top users | synonyms

0
votes
0answers
6 views

GeoExt Action Openlayers Control.DrawFeature

I'm trying to get coordinates from handler point but all the variants that Ivw tried did not work. var action = new GeoExt.Action({ iconCls: "gxp-icon-route", text: "Add route", ...
0
votes
1answer
6 views

TRAC. Return a javascript variable back to javascript

Is there any way to pass a javascript varialbe during process_request in trac 0.11? The code goes like this: def process_request(self, req): component = req.args.get('component_name') ...
0
votes
1answer
48 views

How to start a new intent / call a method in a handler?

In my case, I have a problem starting a new intent or call a method to start this intent if strReceived from bluetooth matches a final declared string str. How do I solve the 'Cannot make a static ...
0
votes
3answers
27 views

How to get Usercontrol object 'X' from X's Button(i.e. Button inside the X) onclick event

Hello guys i am working on a Windows Form application in .Net C#. Now i have a User control with a button inside it. however i had to write the on-click handler in the main form rather than inside ...
0
votes
1answer
16 views

Adding View doesn't Appear

I am trying to add checkboxs to a view that I have on my layout. The problem is that is not showing, but I know that is being added because of getChildCount() at parent view returns a new more item.. ...
0
votes
0answers
8 views

How to test an Http Handler

I have this in my web.config: <httpHandlers> <add verb="*" path="test.sample" type="HttpHandler.IISHandler1"/> </httpHandlers> I ...
0
votes
3answers
32 views

How to keep an activity in foreground for 15 seconds and then dismiss it?

I need to start an activity at time 0, keep it in the foreground for 15 seconds and then stop the activity. What is the best way of doing this? Thanks!
-1
votes
1answer
21 views

Why does “msg.sendToTarget” stop the loop?

Handler hnd = new Handler() { @Override public void handleMessage(Message msg) { int id = sequence.get(msg.arg1); if(msg.arg1 % 2 == 0) { ...
-1
votes
2answers
43 views

What is Handler class? [closed]

What is Handler class in java.
1
vote
0answers
25 views

Issue making a JAX-WS Request within a seperate SOAP Handler

I am having an issue making a JAX-WS request from within the Handle function of a SOAP Handler. Everytime I specifically make a webservice call, it somehow screws up the WebServiceContext causing the ...
0
votes
1answer
18 views

Using Postdelayed to stop Http request after a specified time?

I want to stop the http request after sometime, for this i am using httpclient.getConnectionManager().shutdown(); inside a handler like this: new Handler().postDelayed(new Runnable() { ...
0
votes
0answers
10 views

Delay in plotting the data received via Bluetooth

*In the following code we are sending '6' to start communicating to a serial port device(bluetooth device) which sends 500 data per second. The device is sending the data successfully in the bluetooth ...
1
vote
2answers
25 views

when does not touch for a while activity?

I have a screen and if a user goes there and does nothing, the screen should close after 15 seconds, but if the user starts to input something the wait time must now increase before the screen is ...
0
votes
0answers
15 views

How is DeferredHandler used in android Launcher Source code different from android.os.Handler

How is the behaviour of class DeferredHandler different from the Handler available in android.os.Handler?
0
votes
0answers
7 views

Android get message from thread

I'm new here,I meet a problem,so ask for help. In my adroid app, I want to use udpRecvThread to recv data from PC,then start an Activity it can handle or get the message from the udpRecvThread,and ...
2
votes
1answer
44 views

Handler changing UI causes CalledFromWrongThreadException

I've created a Handler that can be accessed from anywhere within the activity and also written a method to make it easier to call the handler: private Handler textFromBGThread = new Handler() { ...
0
votes
2answers
23 views

C# tick event, direct use

I want to do some code every tick. timer.Tick += new EventHandler(TabPage tab = new TabPage(Convert.ToString("test"));) But this is wrong, i dont remember how do this correctly. I do not want to ...
0
votes
1answer
38 views

Hello World with using Thread in Android

I've been studying examples of Threads and Handlers in Android - a new concept for me. I thought I would start simple with Hello World. I took some snippets from other people's code to see if I could ...
1
vote
1answer
56 views

Netty 4 Outbound Message Handler Closing Connection

I'm experimenting with a custom outbound message handler in Netty 4 and cannot seem to get it to work. The handler just logs a statement and is added toward the bottom of the channel pipeline. My ...
0
votes
1answer
42 views

Handler: repeating code on android

i got this issue, i have a handler in Activity A that is use for show some message depending on the Message.what attribute, ok so far, i got a second Activity (Activity B) which is started by Activity ...
0
votes
3answers
24 views

Android ProgressDailog crashes on dismiss while in a thread

Hi I am trying to execute the code below it suppose to open a loading dialog and dismiss it in the if statement. here is the code: loginBtn.setOnClickListener(new OnClickListener() { ...
0
votes
1answer
37 views

seekbar not working when runnable and handler.postdelayed() are added in android apps

I'm not sure why I get error on the handler. The codes work until when I add in the handler to control the seekbar, it will prompt error. package com.voice.recording.v3; import ...
0
votes
1answer
46 views

cannot convert between nested templated types

I am trying to write a message handler whose Base classes are 1-Handler base class 2-Handler Factory that generates proper handler for a proper message type 3-and a base generic class for message ...
-1
votes
0answers
59 views

AsyncTask onPostExecute not called

I am experiencing some problems with AsyncTask instances not executing their onPostExecute methods. This problem has been reported many times before, but mostly because of faulty method interfaces, or ...
0
votes
0answers
33 views

PHP Custom Error Handler Return Continue to While Loop

I'm using a SQL query to retrieve an array with IP addresses ($ipaddr). I then loop through the array calling 5-6 snmp3_get functions for each IP address. If any of the snmp3_get command throws an ...
0
votes
0answers
31 views

Notification handler on Android

I use PushSharp for my notifications and the notifications are sending through to both iOS and Android devices. However, I when I tried to get the JSon message from the notification, I always get ...
1
vote
1answer
56 views

C: Writing a proper time-out

Upon closely scouring through resources, I'm still not entirely sure how to write a proper and usable timer function in C. I am not working with threads (or parallelizable code). I simply want to ...
0
votes
0answers
32 views

Ubuntu custom URL protocol handler

I want to ask a question, but I will first show my files <html> <body> <a href="cloudje:firefox">Open firefox</a> </body> </html> My .desktop file: [Desktop ...
0
votes
1answer
52 views

Android worker thread with its own Handler/Looper

I want to have a worker thread that can 1) send messages to the UI thread to change things in the GUI, and 2) receive messages from the UI thread to control the worker thread's behavior. The first ...
0
votes
1answer
58 views

Adding event handlers Dynamically to controls within a panel

I've a class which is in a nutshell: class MyPanel { Panel p_panel; //declaring all the elements I need CheckBox cb_choice; RadioButton rb_nagy, rb_kicsi; TextBox ...
0
votes
0answers
13 views

How to identify a wizard control via an OnCreatedUser event handler

I have a CreateUserWizard created exactly as follows: <asp:CreateUserWizard ID="CreateUserWizard1" runat="server" CssClass="Wizard1" CreateUserButtonText="Create Account" ...
0
votes
1answer
26 views

How to put a list of objects in a message (or any other way to send this list)

I am coding an application which uses a Remote Service to start a Thread which loops to collect informations. Then the service shows them to the user, and writes them in a file. I am trying to send ...
2
votes
0answers
25 views

asp.net handler not picking up case sensitive

I have this handler in my web.config: <add name="handler1" path="*.jpg" verb="*" type="ImageHandler" resourceType="Unspecified" preCondition="integratedMode" /> Problem is the path is case ...
0
votes
2answers
53 views

Android: Updating UI using Handler

I implemented an Android Application that consists of four activity (A,B,C,D). A calls B; B calls C and C calls D. The activity A implements a Handler Handler handler=new Handler(){ public ...
0
votes
1answer
42 views

Can't retrieve image in image control via image handler

I am successfully able to store image in database but I am unable to retrieve it... I have database ImageDatabase with a single table Pict that contains two columns Letter (varchar(50)) (pk) and ...
1
vote
2answers
75 views

Execute all sheduled (postDelayed) runnables in Handler

I use a Handler, which post some Runnable via postDelayed(r, DELAY_TIME), but I need to execute all Runnables before posting new via postDelayed. Any good ideas how to achieve this as simple as ...
0
votes
3answers
64 views

Android Handler calling Runnable twice

I know this question has been asked before, but there was no answer provided. I also tried looking elsewhere, have traced the function calls and checked everything, but I cannot figure out the answer. ...
0
votes
1answer
38 views

Gwt, How to code the Right-ClickHandler for Label?

Ok, for label, we got ClickHandler, ie, when we click on the label it will do something. But I want to do something like Right-ClickHandler for Label, ie, when user right click on the label, it will ...
0
votes
0answers
30 views

Getting null value from remote service in android

In my project I have a remote service that communicate to client. For example Project-A is a remote service and Project-B is client. To communicate both applications I am using AIDL interface. Using ...
1
vote
2answers
84 views

My Runner using a Handler is not working on android

Here's what I got so far guys, this is my app, all it does is display a digital clock and move the clock to a new part of the screen every 30 seconds, but it doesn't actually do that last part, here's ...
0
votes
1answer
57 views

periodically check for updates while app on foreground

I have been looking here on Stackoverflow and googling for a correct approach, but could not find one. I guess I won't be the only one with this issue. I have an app that periodically checks for ...
-1
votes
0answers
31 views

What is more efficient for waiting response in android?

My application has some cases that main thread should wait for user's response. However, it can occur ANR message.. So, I have 2 ideas. 1. using while(true) on main thread and works on other thread. ...
0
votes
0answers
45 views

Cocoa protocol handler using NSAppleEventManager and kInternetEventClass/kAEGetURL

This is the Cocoa version of this question: AEInstallEventHandler handler not being called on startup Here's my Info.plist protocol registration: ... <key>CFBundleURLTypes</key> ...
0
votes
1answer
64 views

15 Puzzle Image Checking With Handler

I will make this clear right now this IS homework. I do not expect full answers but they are welcome. I was assigned to make a 15 puzzle in Visual Basic. Here is an example of what the game looks ...
0
votes
3answers
16 views

jquery eventhandler and documentready: handler binds too late

So I have $(document).ready(function() { $('#button').click(function(e) { e.preventDefault();//do not submit the form //go to a specific place }); }); Now unfortunately, my page ...
0
votes
0answers
33 views

pause loadInBackgroud() method

I use AsyncTaskLoader. In the loadInBackgroud() method, I use some method from native library (let's call it any_method()) that returns boolean value. I suppose any_method() uses its own thread, so it ...
0
votes
0answers
39 views

Images not load with asp.net generic handler in iis 6

i have an image handler as type of GenericHandler.ashx in asp.net 2010 framework 4 when i publish website,image load in iis 7 in windows 7 and vs 2010 correctly . but in windows server 2008 iis 6 ...
0
votes
1answer
30 views

jQuery handler not defined (handler.guid)

i have a function for attaching handlers to events and it's working when a pass it an anonymous function but when i declare the function as a field in the object it doesn't work and the handler is ...
2
votes
3answers
71 views

Android why update UI in handler or asynctask when you are already on

I am confused as to why updating an ui element in a handler, asynctask, or runOnUiThread IF YOU ARE ON UI THREAD ALREADY consider the following snippets, numbered from 1 to 4: (for demo purpose, might ...
-1
votes
1answer
17 views

Running code later [closed]

I have an application that displays some text that I have separated into 3 lines of code. I want each group of text to be displayed on screen long enough to be actually read by the user. I am pretty ...

1 2 3 4 5 29