Questions about moving focus to the ListView in Android

Source: Internet
Author: User

A solution

This is not a fundamental solution: write a new class, Inherit the ListView, and overwrite the onfocuschanged.

@Override protected void Onfocuschanged (Boolean gainfocus, int direction, Rect previouslyfocusedrect) { Super.onfocuschanged (Gainfocus, direction, previouslyfocusedrect); if (gainfocus && previouslyfocusedrect! = null) {Final ListAdapter adapter = Getadapter (); final int count = ADAP Ter.getcount (); switch (direction) {case focus_down:for (int i = 0; i < count; i++) {if (!adapter.isenabled (i)) {continue;} SetSel Ection (i); Break } break; Case focus_up:for (int i = count-1; i>=0; i--) {if (!adapter.isenabled (i)) {continue;} setselection (i); break;} BR Eak Default:break; } } }

Here, I only deal with Focus_down and focus_up. Due to the inability to access the mfirstposition, the processing has also been simplified: when the focus is removed from above, select the first one to select, and the last one to select when moving from below.

Questions about moving focus to the ListView in Android

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.