Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

158
votes
7answers
99k views

Android - basic gesture detection

I've been battling to get 'fling' gesture detection working on my Android application today. I've been looking at these sources; Detect Gestures - Tutorial SDK docs Calculator Code Nothing has ...
21
votes
2answers
5k views

PayPal: IPN vs PDT

I'm having some trouble choosing between PayPal's Instant Payment Notification (IPN) and Payment Data Transfer (PDT). Basically, users buy a one-off product on my site, pay on PayPal, and return to ...
19
votes
4answers
2k views

How do I pass the value (not the reference) of a JS variable to a function?

Here is a simplified version of something I'm trying to run: for (var i = 0; i < results.length; i++) { marker = results[i]; google.maps.event.addListener(marker, 'click', function() { ...
16
votes
11answers
16k views

File changed listener in Java

I'd like to be notified when a file has been changed in the file system. I have found nothing but a thread that polls the lastModified File property and clearly this solution is not optimal.
10
votes
3answers
12k views

How to click or tap on a TextView text

I know this is so easy (doh...) but I am looking for a way to run a method on tapping or clicking a TextView line of text in an Android App. I keep thinking about button listeners and anonymous ...
9
votes
3answers
295 views

Advantages to Nested Classes For Listeners in GUIs

For decently sized projects I've been told that when you have classes extending JPanels that the best practice is to use nested classes to implement the listeners. For example I could have a class ...
9
votes
2answers
14k views

Android: On EditText Changed Listener

In my project I have a EditText. I want to show how mant characters are there in the EditText and show it in the TextView. I have written following code and it works fine. However, my problem is when ...
9
votes
4answers
3k views

Python Observer Pattern: Examples, Tips?

Are there any exemplary examples of the GoF Observer implemented in Python? I have a bit code which currently has bits of debugging code laced through the key class (currently generating messages to ...
8
votes
4answers
2k views

Directory listener in Java

I have an application in which I want to listen to any changes made to a particular directory. The application should ping me as soon as there are any files added, deleted or updated in that ...
8
votes
2answers
8k views

Value Change Listener to JTextField

I want the message box appear immediately after the user change the value in textfield. Currently I need to hit enter key to get the message box pop out. Anything wrong to my code? ...
8
votes
4answers
1k views

Good way to have a Collection Listener?

Is there a better way to have a listener on a java collection than wrap it in a class implementing the observer pattern ?
7
votes
1answer
183 views

Java Swing: Using ActionMap

I've seen a post earlier that recommends favoring Actions over listeners. I am not so familiar with the ActionMap. What are the disadvantages of the each approach? I like to make inner classes that ...
7
votes
2answers
1k views

Observer Design Pattern vs “Listeners”

It seems to me that the Observer design pattern as described in GOF is really the same thing as Listeners found in various toolkits. Is there a difference between the concepts, or are Listeners and ...
7
votes
6answers
2k views

Java Listener inheritance

I have a java class which fires custom java events. The structure of the code is the following: public class AEvent extends EventObject { ... } public interface AListener extends EventListener { ...
6
votes
1answer
165 views

Symfony2 Language for TLD

I'm new in Symfony2 and I'm looking for choose the language with the TLD of my hostname. (in a proper way) I already find some way to change the language with a form: ...
6
votes
2answers
108 views

Howto remove Listeners on SWING JComponents

is there an easy way to remove all Listeners from a JComponent? JComponent widget = getComponentOverScaryMethod(); EventListener[] listners = widget.getListeners(EventListener.class); for ...
6
votes
2answers
424 views

Fire Hibernate custom event listener before auto-triggered default listeners

I made a custom Hibernate Event listener extending org.hibernate.event.PreInsertEventListener. The custom listener overrides onPreInsert method and sets a field of a "Contact" entity before saving it ...
6
votes
1answer
135 views

Notification of memory shortage in Java

Is there any delivered feature in Java notifying a memory shortage in an application (or notifying that it has reach a predefined level)? I was wondering whether it was possible to register a ...
6
votes
8answers
2k views

What's the difference between Event Listeners & Handlers in Java?

In general terms of java, there are listeners & handlers for events. I mean I use them unknowingly just whichever they are available in the API. My question is that what kind of cases do we ...
6
votes
6answers
307 views

Java - Should ActionListeners, KeyListeners, Etc, Always Be Declared In Inner Classes?

In all the Java source code examples I have looked at the listeners have always been declared in inner classes. Why - what is the reason for coding the classes like this instead of having the ...
6
votes
4answers
3k views

Event listener in Java without app having focus? (Global keypress detection)

I've been searching for a while and everybody seems to think this is not possible using just Java, so I'll give SO a shot ;) Is there any way to have my Java application listen for events (key events ...
5
votes
3answers
231 views

Detect screen resolution change made by user (Java Listener?)

I have a Java app that launches, creates a GUI and works great. If the user changes the screen resolution (switches from 1440x900 to 1280x768), I'd like to be able to listen for that event. Any ...
5
votes
1answer
470 views

Move Events AFTER LongPress

How can I listen the move events after the LongPress is caled in my GestureDetector? When the user LongClick he starts the selection mode, and can drag a square into the screen. But I noticed that ...
5
votes
5answers
3k views

JavaScript: remove event listener

I'm trying to remove an event listener inside of a listener definition: canvas.addEventListener('click', function(event) { click++; if(click == 50) { // remove this event listener ...
5
votes
5answers
3k views

Is there a listener for when the WebView displays it's content?

Using WebViewClient and/or the WebChromeClient you can get a listener for when the page has loaded, however this is sometimes called before the WebView has any content in it, before it has displayed ...
5
votes
1answer
630 views

Can AppleScript listen for events?

I want to write a script that takes action when a document is opened on a certain application, or before an application quits, etc. Is there a way to attach a script to an event in an application? ...
5
votes
3answers
9k views

Custom event listener on Android app

I need to set up a simple event listener to refresh a listview from once in a while. The problem is I don't know how could I generate an event. I know that for events like key or button pressing I ...
5
votes
3answers
3k views

How to capture System.exit event?

I have an application in java, in which i try to ensure that the if anybody exits codes System.exit() in the code , an listener should be called to do some stuff like logging message and releasing the ...
5
votes
2answers
2k views

How do I modify existing AS3 events so that I can pass data?

So I want a way to set up events so that I can pass data without creating closures \ memory leaks. This is as far as I have got: package com.events { import flash.events.Event; public class ...
5
votes
2answers
508 views

Events For Window Dragging in Java

I'm trying to implement an OS X drawer like feature in Java, and so I'm going to have one window hiding under another. However when I drag the primary window (JFrame) I need to send updates as it ...
5
votes
6answers
6k views

Should I use a Listener or Observer?

I have a dropdown box in my GUI which shows the contents of an ArrayList in another class. New objects can be added to the ArrayList elsewhere in the GUI, so I need to know when it is updated, so I ...
5
votes
2answers
5k views

Spring security: adding “On unsuccessful login event listener”

I'm new to Spring Security. How do I add an event listener which will be called as a user logs in successfully? Also I need to get some kind of unique session ID in this listener which should be ...
4
votes
2answers
98 views

What exactly is Port Listening

Does "Listening" a port means a continuous polling to that port or a discrete polling or an interrupt driven process. What exactly is going on in "Listening to a Port"?
4
votes
3answers
172 views

How to create custom Listeners in java?

I want to know about how to set our own Listeners in java.For example I have a function that increments number from 1 to 100. i want to set a listener when the value reaches 50. How can i do that? Pls ...
4
votes
1answer
187 views

Directory/Folder listener in Blackberry

I want to develop an application in blackberry that is running in background and should listen for change in particular folder i.e. whether the file in particular folder/directory has been added or ...
4
votes
5answers
528 views

C# / SQL Listener to tell me if a row has been inserted into a table

Can someone post sample code or tell me how to set up a listener to notify me (trigger an event) if a new row is inserted into a SQL Server database? I don't want to use any of the SQL Server ...
4
votes
5answers
261 views

How to listen for when a component is shown for the first time

I am trying to capture the very first moment when a component is show on the screen - without using 'dirty' solutions as with use of a timer. Basically I want to know a moment when I can safely start ...
4
votes
2answers
949 views

Spring ApplicationListener is not receiving events

I have the following ApplicationListener: package org.mycompany.listeners; import org.springframework.context.ApplicationListener; import org.springframework.context.event.ContextStartedEvent; ...
4
votes
1answer
3k views

Android - swipe left|right . gesture detection

was trying to add this "gesture" function to my first program, and almost every search I did came to this thread: Android - basic gesture detection I was able to get it working.. but in my case, I ...
4
votes
2answers
3k views

Remove an onclick listener

I have an object where the text cycles and displays status messages. When the messages change, I want the click event of the object to change to take you to the activity that the message is relating ...
4
votes
2answers
331 views

Scala syntactic sugar with java listener pattern

I have to use java code in my scala project. The java code encourages the usage of a listener pattern. The code is something like this: asyncHttpClient.prepareGet("http://www.ning.com/ ...
4
votes
6answers
287 views

Java: where should I put anonymous listener logic code?

we had a debate at work about what is the best practice for using listeners in java: whether listener logic should stay in the anonymous class, or it should be in a separate method, for example: ...
4
votes
3answers
2k views

Remove a listener from a view in android

Is there any way to remove a listener from a view in android? I have a Checkbox that I attached a checkchangedlistener to. The problem is that calling setChecked() on it causes my listener to fire. ...
4
votes
1answer
832 views

How to get real-time status notification with Facebook SDK via listener

I'm using Twitter4j and the Android Facebook SDK to fetch status messages. With Twitter4J I get real-time notifications whenever a new status has been added to the stream via StatusListener ...
4
votes
1answer
279 views

java MouseListener and MouseAdapter - pass in variable

i have the following method: public static void createDialog(Button b, String message) { MouseListener mouseListener = new MouseAdapter() { public void mousePressed(MouseEvent mouseEvent) ...
4
votes
4answers
162 views

Which is better: Function overriding or passing a function pointer for event handling

So, I'm writing code for a class that will go into a library that will be used by others. This class will intercept and process incoming messages (details are not important but it's using the ...
4
votes
4answers
110 views

Patterns to compensate for lack of runtime method lookup based on polymorphic args in Java?

It seems that Java can't choose the most appropriate method implementation based on the runtime type of an argument, as documented here. Recapitulating the example: class Superclass {} class Subclass ...
4
votes
4answers
1k views

Scala Listener/Observer

Typically, in Java, when I've got an object who's providing some sort of notification to other objects, I'll employ the Listener/Observer pattern. Is there a more Scala-like way to do this? Should I ...
4
votes
4answers
9k views

Android OnClickListener - identify a button

public class Mtest extends Activity { Button b1; Button b2; public void onCreate(Bundle savedInstanceState) { ... b1 = (Button) findViewById(R.id.b1); b2 = (Button) ...
4
votes
2answers
168 views

Why are listener lists Lists?

Why are listener lists (e.g. in Java those that use addXxxListener() and removeXxxListener() to register and unregister listeners) called lists, and usually implemented as Lists? Wouldn't a Set be a ...

1 2 3 4 5 17