Questions tagged [keypad]

218 questions
3
votes
0 answers

How to programmatically show numeric keypad in android application

I am trying to port the android application(2.3.3) to BB 10,Presently input=number,is not showing numeric keypad,even though it filters appropriately,I tried list of methods to make it programmatically work or make some modifications in XML. While…
Rakesh
  • 14,997
  • 13
  • 42
  • 62
3
votes
1 answer

Caps only keypad

I have a bunch of EditTexts, and when the user clicks on these a keypad comes up and the user can enter some text. I want to make it so that the keypad is all in capital letters (i.e. caps lock permanently on). Is this possible?
Kurt
  • 767
  • 8
  • 23
3
votes
1 answer

Enter text in EditText via custom keypad

Hi I have created 6x6 edittexts (which cover 70% of the screen)in my application using gridview. So I used Adapter class to put that 36 edittexts in the gridview. Below that I have arranged 10 buttons(which cover remaining 30% of the screen) named…
Spike
  • 147
  • 3
  • 17
2
votes
1 answer

How to detect if Android device has QWERTY keypad

I am new to Android. I want to detect, through code, whether my android device has QWERTY keypad and camera or not. Any suggestions?
user1108995
  • 175
  • 1
  • 4
  • 11
2
votes
2 answers

bada Programming - Popup message with Keypad

I have this error where I click something, it will popup a message with a close button, when I click on the close button, some part of the popup does not close properly. Here is a screen shot of it. May I know how to solve this? this is the…
Winona
  • 2,950
  • 2
  • 21
  • 29
2
votes
1 answer

nanoFramework ESP32 Not waking up after sleep with Keypad

I am doing a project with a numeric keypad, an ESP32 programmed in nanoFramework (CoreLibrary 1.9.0 p5, Esp32 1.3.2 p9). Now I want to wake up the controller with a keypress on one of the buttons. The code for handling the matrix works fine, buttons…
ummerland
  • 23
  • 2
2
votes
1 answer

iphone "Go" key pad button and android "Enter" keypad button

I have a site which is optimized for mobile devices. I also have a sign in page on this site. Once a user fills the credentials he/she can sign in using a sign in button. but I also want that the same operation happen when they tab the "Go" button…
shebelaw
  • 3,992
  • 6
  • 35
  • 48
2
votes
1 answer

How to insert hyphens into a phone number input?

I have a JavaScript which auto hyphen a user input on a text field for a phone number. It works find on iPhone but on android the hyphen show up and the cursor also get to the right place (after the hyphen) but when user type the number it display…
shebelaw
  • 3,992
  • 6
  • 35
  • 48
2
votes
0 answers

Programmatically using the in-call number-pad while in a call

While I understand that this sort of question has been asked a few times, none of the answers that have been presented have been satisfactory for my needs and so I would like to ask all of you: While in a call, is it possible to activate a number on…
Mailbox
  • 21
  • 1
2
votes
3 answers

PIC16F84A Assembly with keypad and interrupt

I am currently writing an assembly code that will count down a BCD counter (through the 7-segment display). When a key is pressed, the counter will be overridden by the key pad value then the count down continues. For example if the current counter…
JezT
  • 57
  • 8
2
votes
2 answers

Keycodes for the Numeric Keypad

I was looking at the Stack Overflow questions to see if there was a keycode for the number keypad (the keys on the right of the keyboard). A list of useful answers was given but also confusing. Apparently Numpad-0 is 96, Numpad-1 is 97, Numpad-2 is…
HugMyster
  • 329
  • 1
  • 4
  • 14
2
votes
1 answer

Redeclared as different kind of symbol in Arduino

I'm currently working on a school project. I want the servo to move according to the number of coins selected. I keep getting the error " 'void servoOne()' redeclared as different kind of symbol " I know this has been asked but I'm not sure how to…
Katherine
  • 37
  • 1
  • 1
  • 9
2
votes
1 answer

How can I make a stepper motor run until I press a specific keypad button on Arduino?

Here is my code: #include #include #include #include const int stepsPerRevolution = 200; const byte ROWS = 4; //four rows const byte COLS = 1; //one column char keys[ROWS][COLS] = { {'-'}, …
Luke B
  • 288
  • 2
  • 5
  • 18
2
votes
1 answer

Readline & NCurses, handle special keys and keys combinations

I'm replicating an Irssi interface for a student project. I would like to use NCurses for the text interface, and readline to provide better text-editing capabilities while writing messages. This question, answer and project provided me with a great…
Antonin Décimo
  • 499
  • 3
  • 17
2
votes
1 answer

Can you capture events from the 5 way directional buttons in Opera Mini using JavaScript?

Can you capture events from the 5-way keypad of a device using Opera Mini using Javascript? (My guess is the answer is no, but I figured I'd ask anyway)
leeand00
  • 25,510
  • 39
  • 140
  • 297
1
2
3
14 15