android tv 焦点乱跳,Android TV应用 RecyclerView 焦点乱跑问题解决

本文只讨论如何解决Android TV应用 RecyclerView 焦点乱跑的问题.

RecyclerView的使用方法,大家可以参考此篇博文:http://blog.csdn.net/lmj623565791/article/details/45059587

使用示例:

public static final int ITEMS_COUNT_ONE_LINE = 6;

mRecyclerView = (RecyclerView) root.findViewById(R.id.rv);

mGridLayoutManager = new FocusGridLayoutManager(getContext(), ITEMS_COUNT_ONE_LINE);

mGridLayoutManager.setOrientation(RecyclerView.VERTICAL);

mRecyclerView.setLayoutManager(mGridLayoutManager);

解决此问题的核心是修改 FocusGridLayoutManager

public class FocusGridLayoutManager extends android.support.v7.widget.GridLayoutManager {

}

在此GridlayoutManager中,重载方法onInterceptFocusSearch

@Override

public View onInterceptFocusSearch(View focused, int direction) {

if (direction == View.FOCUS_DOWN) {

int pos = getPosition(focused);

int nextPos = getNextViewPos(pos, direction);

int size = getChildCount();

int count = getItemCount();

if (size > 0) {

int startIndex = 0;

if (size >= mSpanCount) {

startIndex = size - mSpanCount;

}

View view;

for (int i = startIndex; i < size; i++) {

view = getChildAt(i);

if (view == focused) {

int lastVisibleItemPos = findLastCompletelyVisibleItemPosition();

if (pos > lastVisibleItemPos) { //lastVisibleItemPos==-1 ||

return focused;

} else {

int lastLineStartIndex = 0;

if (count >= mSpanCount) {

lastLineStartIndex = count - mSpanCount;

}

if (pos >= lastLineStartIndex && pos < count) { //最后一排的可见view时,返回当前view

return focused;

}

break;

}

}

}

} else {

return focused;

}

}

return super .onInterceptFocusSearch(focused, direction);

}

最核心的是两个地方

1.if (pos > lastVisibleItemPos)  若当前要显示的位置,大于可见的Item的位置,即此时,有可能焦点会乱跑了,此时,返回当前的View作为下一个要Focus的View.

2.if (pos >= lastLineStartIndex && pos < count)  最后一排的可见view时,返回当前view,避免会加载看不见的view,此时也会乱跑。

至此,解决了乱跑问题。其他类型的LayoutManager也可照此方法解决。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值