how to increase the size of jspinner arrows as per touch screen requirements on desktop

2.1k Views Asked by At

Hi Can anybody help me to how to increase the size of jspinner arrows as per touch screen requirements on desktop

3

There are 3 best solutions below

0
On

help me to how to increase the size of jspinner arrows as per touch screen requirements on desktop

  • even is possible to change

    a) PreferredSize for Buttons (in API limited by Icons size 8x8, have to override too)

    b) relayout Buttons in JSpinner one on the LEFT (or SOUTH) and 2nd or RIGHT (or NORTH)

  • but for JSpinner I wouldn't going this way


  • create JTextField / JFormattedTextField with DocumentListener, implement there all limits to the DocumentFilter (by default for JSpinner is there the same requirements too)

  • put there two JButtons (by using JButton#setXxxIcon to set own Icon), for inc / des creasing value

  • for Date / Calendar use proper JCalendar or JDatePicker

2
On

You might try one of these:

  • See if a large size variant is available for your chosen Look & Feel.

  • Change the Spinner.arrowButtonSize property using the UIManager.put() method.

0
On

change the size of JButton in spinner components like this:

        spn = new JSpinner();   
        spn.getComponent(0).setPreferredSize(new Dimension(40,40)); 

JSpinner has three component. two JButton and one JTextField.

  1. the 1st component is nextButton
  2. the 2nd component is previousButton
  3. the 3rd component is NumberEditor