search

Home  >  Q&A  >  body text

android - 怎么在Listview setAdapter的时候,不给Listview焦点?

在setadapter的时候,Listview会自己拿到焦点,跳转到最上面。
怎么不让listview拿到焦点呢?

不考虑的方法:
1.把焦点给其他控件
2.把布局写成Listview的header

迷茫迷茫2771 days ago560

reply all(2)I'll reply

  • 天蓬老师

    天蓬老师2017-04-18 09:17:58

    Found a way.
    Use setFocuse to determine whether the user clicked it.

    reply
    0
  • 怪我咯

    怪我咯2017-04-18 09:17:58

    1. Call ListView.setAdapter(...) first when the page opens

    2. Refresh data through Adapter.notifyDataChanged()

    ListView焦点引起的问题基本无解, 即便处理了, 还是会有不适应的情况. 连ListView滚动时都会获取focus. 所以, 尝试下RecyclerView, 并调用RecyclerView.setFocusable(false).

    reply
    0
  • Cancelreply