studio - ontouchlistener android ejemplo
Advertencia de onTouchListener: onTouch deberÃa llamar a View#performClick cuando se detecta un clic (1)
Aqui tienes:
public boolean onTouch(View v, MotionEvent event) {
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
//some code....
break;
case MotionEvent.ACTION_UP:
v.performClick();
break;
default:
break;
}
return true;
}
He creado un onTouchListener
. Desafortunadamente el método onTouch () me throws
una advertencia:
com/calculator/activitys/Calculator$1#onTouch should call View#performClick when a click is detected
¿Qué significa? No he encontrado ninguna información sobre esta advertencia. Aquí está el código completo:
LinearLayout llCalculatorContent = (LinearLayout) fragmentView.findViewById(R.id.calculator_content);
llCalculatorContent.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
Tools.hideKeyboard(getActivity(), getView());
getView().clearFocus();
return false;
}
});