Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
74 views

QPushButton() should react as long as it is pressed

I am using QPushButton() in my programme. With these buttons I rotate my object. Works fine so far. The only Problem is that i have to click multiple times to rotate the object a little further. This ...
2
votes
3answers
934 views

How can i keep one button as pressed after click on it?

I have one button and i want when i pressed it to stay as pressed (with the green color at froyo).. Any help?? mycodes_Button = (Button) findViewById(R.id.mycodes); ... if ...
2
votes
2answers
613 views

iphone sdk: How to get rid of the action sheet in UIWebView?

I have a UIWebView and when I press a textual link (for at least a second) some kind of UIActionSheet appears with 3 buttons (open, copy and cancel) - Is there a way to prevent it from appearing? ...
1
vote
2answers
151 views

TextView state_pressed/state_focused/state_selected style change

I'm trying to change a TextView style based on its state. My styles.xml contains: <style name="text_normal_ops"> <item name="android:gravity">left</item> <item ...
1
vote
0answers
69 views

Prevent Buttons From Hiding Soft Keyboard On Android

I have a WebView and some buttons in my layout. There is a large tag in my WebView. This app is used to edit text files. The buttons are used to effect the textarea inside my WebView. When the user ...
1
vote
0answers
101 views

can someone rectify this add , a background on java and change it with stat pressed left or right

hy everybody , i need a help traying to add a background on android slider.java , so i want to have a background and to change it like this : getBackground ( R.drawable_slider_bg); if leftslider = ...
1
vote
0answers
444 views

onKeyDown / onBackPressed is not firing

In which cases are onKeyDown, onBackPressed not firing? In my case I have a TabActivity with a ActivityGroup in background where all the upcoming views/activities are stored. The ActivityGroup takes ...
1
vote
2answers
426 views

Android : button automatic pressed state(like iOS) for both background and text?

In iOS, if I set a button's background to an image, and when I pressed the button, the whole content of the button(including the text) will be shadowed, can I achieve the same effect in Android, or do ...
1
vote
1answer
158 views

How to determine via UIAutomation, whether a button is pressed or not?

I want to find out whether a button is pressed or not. This seems not to be an official property of a button (not a button-style checkbox!), but seems accessible, there is the BM_GETSTATE message for ...
1
vote
5answers
2k views

Apply Different Style to Button When Pressed

Is there a way to apply a style to a button when the button is pressed? If I have a style in style.xml: <resources> <style name="test"> <item ...
1
vote
3answers
751 views

Java - Can we detect if a key is pressed without using a Listener?

I need to be able to detect if a certain key (e.g. CTRL) is pressed during a specific operation of mine. I don't have access to a key listener, nor to a mouse event. What I'm hoping is that there ...
1
vote
3answers
282 views

keydown freezes timer c#

Hey, I am making a frogger type game and I am using a timer to make the images move across the screen. I am also using the keydown event to handle when the user moves the 'frog'. So, w moved up, s ...
0
votes
2answers
29 views

Error in the pygame.key.get_pressed() method

I have no idea why the following is giving the error: name 'K_SPACE' is not defined. Importing pygame also imports the keyboard constants which includes 'K_SPACE'. My code: if ...
0
votes
1answer
47 views

ICS ListView background disabled when set onclicklistener

I'm working on an Android application with ListView/GridView. Since I set an onClickListener on the convertView (The view I return in the getView() method of my Adapter), the cell's background ...
0
votes
0answers
22 views

Android setPressed behavior

The following code is an attempt to simulate a key stroke: button1.setPressed(true); try { Thread.sleep(500); } catch(InterruptedException e) { } button1.setPressed(false); The above does nothing ...
0
votes
1answer
49 views

Image pressed button changing size

I realize this has been asked multiple times, but my image is changing size when it is pressed (which is should be the same size, but a different image). I've previously tried setting the size of the ...
0
votes
1answer
107 views

How do I make a button seem like pressed and then unpressed from code naturally in c# for WP7?

I am trying to make buttons seem like pressed automatically so the user can then follow the buttons pressed but everytime I try it doesn't seem natural because the computer does it really fast all the ...
0
votes
1answer
48 views

Qt Mousebutton is not releasing

In my programm it is possible to grab points with the mouse and moving them. The problem is that Qt is not releasing the point after I have released the mousebutton. Isnt there something like: ...
0
votes
1answer
91 views

App crashes when display button is clicked, no red code

I'm trying to make a word mashing app (just as practice), and I got all the errors worked out in the code. When I go to run the app in the simulator, everything works but the "mash words" button. The ...
0
votes
3answers
103 views

Can I add a value to a int when a button is pressed?

Hi I'm new to programming My concept is that I want to add 1 to an int type every time I press the button Is it possible? If yes what's the simplist code to do that? Within the method of ...
0
votes
2answers
376 views

Cocoa/Carbon: catch global hotkey when key is kept pressed (held down)

Using InstallApplicationEventHandler and RegisterEventHotKey from Carbon framework, I'm able to catch whatever key I want. On the contrary I can't find a way to handle correctly the event when a key ...
0
votes
0answers
287 views

Android CheckBox Pressed state stays pressed after a long press

I've got a CheckBox button defined with this xml, and it toggles between a play and pause button which are colored white when not pressed. When I press either the play or pause image, I want it to ...
0
votes
3answers
615 views

Android. How do I keep a button displayed as PRESSED until the action created by that button is finished?

I have button_focused, button_pressed, and button_normal images. When I press the button, the button_pressed image is displayed and the action related to the button pressing begins. When I quit ...
0
votes
1answer
145 views

How to automatically display an overlay when the button is pressed

I know there is the selector method for the pressed and normal state xml method. However, for that method, you always need 2 image resources. So for every button, you need an alternate one for the ...
0
votes
2answers
429 views

To increase a button's size when it is pressed in Android

How can I make my button's size to increase slightly when it is pressed and decrease again when it is released? This is for highlighting the pressed button, by using size in addition to a different ...
0
votes
1answer
348 views

Android: changing the pressed/focused ressource by code

I am using some tweaks that allow the user to change the UI of my application with ressources from their SDCard. That's really easy and nothing special, I just use the "setImageDrawable" or ...
0
votes
4answers
595 views

DefaultButton in ASP.NET forms

What is the best solution of defaultButton and "Enter key pressed" for ASP.NET 2.0-3.5 forms?