简体   繁体   中英

How do I make my Java 8 application JAWS enabled to help blind users?

How do I make my Java 8 application JAWS enabled to help blind users? I have tool-tips for all options but a customer who uses JAWS says my application does very little and does not read the tool-tips. How do I make it more useful?

If setting tooltip is not working try getAccessibleContext() API. eg

component.getAccessibleContext().setAccessibleDescription("This is tooltip.");

Also below is official guide from Oracle. Rules for Supporting Accessibility

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM