jianxux / eyes-free

Automatically exported from code.google.com/p/eyes-free
0 stars 0 forks source link

Alert Dialog and Menus layers over Talk Back Keyboard Navigation. #67

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Enable Talk Back Keyboard Navigation mode
2. Using navigation mode, goto app with alert dialog or menu
3. Select the button to make the alert dialog appear.

See attached screenshots for examples of a menu layering over navigation and 
alert dialog layering over navigation.

What is the expected output? What do you see instead?
The Navigation interface should be layered above the alert dialog so the 
contents of the dialog can be navigated.

What version of the product are you using? On what operating system?
To date, the current market release of talk back on Froyo.

Please provide any additional information below.

Original issue reported on code.google.com by robbie.v...@gmail.com on 5 May 2011 at 4:37

Attachments:

GoogleCodeExporter commented 8 years ago
I found a way to work around this problem.

    public static void show(Dialog d) {
        d.show();

        // Adjust the window settings so the soft nav interface can be shown.
        WindowManager.LayoutParams p = new WindowManager.LayoutParams();
        p.format = PixelFormat.TRANSLUCENT;
        d.getWindow().setAttributes(p);
    }

Original comment by robbie.v...@gmail.com on 5 May 2011 at 8:43

GoogleCodeExporter commented 8 years ago
Android framework issue, cannot fix in keyboard.

Original comment by alanv@google.com on 17 Dec 2011 at 6:10