我在listview中使用了一个库从左到右进行滑动,但是在listview中有一个edittext,并且在点击edittext键盘后没有显示。
holderGroups.edit.setOnTouchListener(new OnTouchListener() {
@SuppressLint("ClickableViewAccessibility")
@Override
public boolean onTouch(View v, MotionEvent event) {
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
InputMethodManager im = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
im.showSoftInput(holderGroups.edit, 0);
break;
case MotionEvent.ACTION_UP:
v.performClick();
break;
default:
break;
}
return true;
}
});
请仔细阅读我的代码,并向我提出一些解决方案。