WebAIM - Web Accessibility In Mind

E-mail List Archives

Thread: Appropriate role for tiles on android

for

Number of posts in this thread: 8 (In chronological order)

From: Ajay Sharma
Date: Fri, Sep 27 2019 6:13PM
Subject: Appropriate role for tiles on android
No previous message | Next message →

Hi All,

We have a view in android that looks like a tile containing a title,
below it is some description followed by some icons. The entire view
is clickable and has a single focus. What should be an appropriate
role for this view?
Best,
Ajay

On 9/26/19, Barry Hill < = EMAIL ADDRESS REMOVED = > wrote:
> Hi all
>
>
>
> Why would Jaws with Chrome throw the user back to the top of a page when
> closing a modal on a web page? Is it a Jaws issue, a Chrome issue or a
> coding issue?
>
>
>
> Thanks in anticipation .
>
>
>
> Cheers
>
>
>
> Barry
>
>
>
>
>
>
>
> > > > >

From: glen walker
Date: Fri, Sep 27 2019 9:02PM
Subject: Re: Appropriate role for tiles on android
← Previous message | Next message →

It depends on what happens when you click it. It sounds like a big fat
button (if it performs an action) or a link if it's navigational.

On Fri, Sep 27, 2019 at 6:13 PM Ajay Sharma < = EMAIL ADDRESS REMOVED = >
wrote:

> Hi All,
>
> We have a view in android that looks like a tile containing a title,
> below it is some description followed by some icons. The entire view
> is clickable and has a single focus. What should be an appropriate
> role for this view?
> Best,
> Ajay
>
> On 9/26/19, Barry Hill < = EMAIL ADDRESS REMOVED = > wrote:
> > Hi all
> >
> >
> >
> > Why would Jaws with Chrome throw the user back to the top of a page when
> > closing a modal on a web page? Is it a Jaws issue, a Chrome issue or a
> > coding issue?
> >
> >
> >
> > Thanks in anticipation .
> >
> >
> >
> > Cheers
> >
> >
> >
> > Barry
> >
> >
> >
> >
> >
> >
> >
> > > > > > > > > >
> > > > >

From: Sean Murphy
Date: Sat, Sep 28 2019 1:05AM
Subject: Re: Appropriate role for tiles on android
← Previous message | Next message →

As Glenn said If the whol title is a single focusable area Treat it as a button. But if there are other interactive objects inside the tile Then you will have to treat the tile as a group container with a name accessible property


Sean

My experience is the part

> On 28 Sep 2019, at 10:13 am, Ajay Sharma < = EMAIL ADDRESS REMOVED = > wrote:
>
> Hi All,
>
> We have a view in android that looks like a tile containing a title,
> below it is some description followed by some icons. The entire view
> is clickable and has a single focus. What should be an appropriate
> role for this view?
> Best,
> Ajay
>
>> On 9/26/19, Barry Hill < = EMAIL ADDRESS REMOVED = > wrote:
>> Hi all
>>
>>
>>
>> Why would Jaws with Chrome throw the user back to the top of a page when
>> closing a modal on a web page? Is it a Jaws issue, a Chrome issue or a
>> coding issue?
>>
>>
>>
>> Thanks in anticipation .
>>
>>
>>
>> Cheers
>>
>>
>>
>> Barry
>>
>>
>>
>>
>>
>>
>>
>> >> >> >> >>
> > > >

From: joe
Date: Sat, Sep 28 2019 5:26AM
Subject: Re: Appropriate role for tiles on android
← Previous message | Next message →

Is this mobile web content or in a native app? If it is in a native app, are
the "tiles" part of a listview?

Joe Humbert

From: Ajay Sharma
Date: Sat, Sep 28 2019 7:14PM
Subject: Re: Appropriate role for tiles on android
← Previous message | Next message →

It is not in a listview currently, it is on react native and upon activation opens a new page on app that displays the details for that tile.

Would it be fine to have them as items in a list view?



Sent from my iPhone

> On Sep 28, 2019, at 4:26 AM, < = EMAIL ADDRESS REMOVED = > < = EMAIL ADDRESS REMOVED = > wrote:
>
> Is this mobile web content or in a native app? If it is in a native app, are
> the "tiles" part of a listview?
>
> Joe Humbert
>
>

From: wmodnl wmodnl
Date: Sat, Sep 28 2019 7:15PM
Subject: Re: Appropriate role for tiles on android
← Previous message | Next message →

Thanks


Sent from my iPhone

> On Sep 28, 2019, at 21:14, Ajay Sharma < = EMAIL ADDRESS REMOVED = > wrote:
>
> It is not in a listview currently, it is on react native and upon activation opens a new page on app that displays the details for that tile.
>
> Would it be fine to have them as items in a list view?
>
>
>
> Sent from my iPhone
>
>> On Sep 28, 2019, at 4:26 AM, < = EMAIL ADDRESS REMOVED = > < = EMAIL ADDRESS REMOVED = > wrote:
>>
>> Is this mobile web content or in a native app? If it is in a native app, are
>> the "tiles" part of a listview?
>>
>> Joe Humbert
>>
>>

From: joe
Date: Mon, Sep 30 2019 6:46AM
Subject: Re: Appropriate role for tiles on android
← Previous message | Next message →

Since it is native app and not web-based content, they should have a role of
button or be in a native component that can contain active elements (e.g.,
Listview, menu, navigation drawer).

Due to limitations in Android, some components that contain only active
elements give no roles for each item, but do give help text
(accessibilityHint, if turned on by the user) indicating they are active.
For example, [element name {Pause}, Double-tap to activate].

If you need further guidance, let me know.

Joe Humbert

From: Ajay Sharma
Date: Mon, Sep 30 2019 12:42PM
Subject: Re: Appropriate role for tiles on android
← Previous message | No next message

Thanks all for your kind thoughts.

So far it appears for this case listview could be the correct choice,
as number of these tiles could increase or decrease. This would also
let the users to know about the count of items in the list as well.

Thanks for helping me to reach here.

Best,
Ajay

On 9/30/19, = EMAIL ADDRESS REMOVED = < = EMAIL ADDRESS REMOVED = > wrote:
> Since it is native app and not web-based content, they should have a role
> of
> button or be in a native component that can contain active elements (e.g.,
> Listview, menu, navigation drawer).
>
> Due to limitations in Android, some components that contain only active
> elements give no roles for each item, but do give help text
> (accessibilityHint, if turned on by the user) indicating they are active.
> For example, [element name {Pause}, Double-tap to activate].
>
> If you need further guidance, let me know.
>
> Joe Humbert
>
>