android edittext tab键 输入,android – EditText没有收到TAB键事件 – stock soft vk

我想我可能会看到这个问题.查看ListView.

java的源代码,有一种机制可以使用在列表项中移动焦点的键事件.查看此方法之前的注释以及方法中间的注释块.

/**

* To avoid horizontal focus searches changing the selected item, we

* manually focus search within the selected item (as applicable), and

* prevent focus from jumping to something within another item.

* @param direction one of {View.FOCUS_LEFT, View.FOCUS_RIGHT}

* @return Whether this consumes the key event.

*/

private boolean handleHorizontalFocusWithinListItem(int direction) {

if (direction != View.FOCUS_LEFT && direction != View.FOCUS_RIGHT) {

throw new IllegalArgumentException("direction must be one of"

+ " {View.FOCUS_LEFT, View.FOCUS_RIGHT}");

}

final int numChildren = getChildCount();

if (mItemsCanFocus && numChildren > 0 && mSelectedPosition != INVALID_POSITION) {

final View selectedView = getSelectedView();

if (selectedView != null && selectedView.hasFocus() &&

selectedView instanceof ViewGroup) {

final View currentFocus = selectedView.findFocus();

final View nextFocus = FocusFinder.getInstance().findNextFocus(

(ViewGroup) selectedView, currentFocus, direction);

if (nextFocus != null) {

// do the math to get interesting rect in next focus' coordinates

currentFocus.getFocusedRect(mTempRect);

offsetDescendantRectToMyCoords(currentFocus, mTempRect);

offsetRectIntoDescendantCoords(nextFocus, mTempRect);

if (nextFocus.requestFocus(direction, mTempRect)) {

return true;

}

}

// we are blocking the key from being handled (by returning true)

// if the global result is going to be some other view within this

// list. this is to acheive the overall goal of having

// horizontal d-pad navigation remain in the current item.

final View globalNextFocus = FocusFinder.getInstance().findNextFocus(

(ViewGroup) getRootView(), currentFocus, direction);

if (globalNextFocus != null) {

return isViewAncestorOf(globalNextFocus, this);

}

}

}

return false;

}

单个列表元素中是否有多个可聚焦项目?如果是这样,此代码将使用Tab键.如果是这种情况,那么您可能想要使一些项目不可聚焦或考虑另一种设计选项.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值