Necesito agregar funcionalidad a ese botón, pero no sé el nombre del botón, y no sé cómo darle funcionalidad.Cómo agregar funcionalidad al botón oficial Take Photo de los teléfonos Android?
¿Alguien sabe qué hacer?
resuelto:
mSurfaceView.requestFocus();
mSurfaceView.setFocusableInTouchMode(true);
public boolean onKey(View v, int keyCode, KeyEvent event) {
boolean keyManaged=false;
switch(keyCode)
{
case KeyEvent.KEYCODE_CAMERA:
mCamera.takePicture(null, mPictureCallback, mPictureCallback);
keyManaged=true;
break;
}
return keyManaged;
}
Esto sólo funciona cuando la aplicación está activa. –